Skip to content

Commit ef77a11

Browse files
authored
Cut v0.15.0 (#146)
Signed-off-by: Kemal Akkoyun <[email protected]>
1 parent a6a0027 commit ef77a11

10 files changed

+28
-17
lines changed

Diff for: CHANGELOG.md

+15-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,28 @@ We use *breaking* word for marking changes that are not backward compatible (rel
1515

1616
### Changed
1717

18+
-
19+
1820
### Added
1921

20-
- [#142](https://github.com/thanos-io/kube-thanos/pull/142) query-frontend: Add thanos query frontend component.
21-
- [#145](https://github.com/thanos-io/kube-thanos/pull/145) querier: Add a new mixin to specify `--query.lookback-delta` flag.
22+
-
2223

2324
### Fixed
2425

25-
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/master...v0.14.0)
26-
2726
-
2827

28+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/master...v0.15.0)
29+
30+
## [v0.15.0](https://github.com/thanos-io/kube-thanos/tree/v0.15.0) (2020-09-07)
31+
32+
### Added
33+
34+
- [#142](https://github.com/thanos-io/kube-thanos/pull/142) query-frontend: Add thanos query frontend component.
35+
36+
- [#145](https://github.com/thanos-io/kube-thanos/pull/145) querier: Add a new mixin to specify `--query.lookback-delta` flag.
37+
38+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/v0.14.0...v0.15.0)
39+
2940
## [v0.14.0](https://github.com/thanos-io/kube-thanos/tree/v0.14.0) (2020-07-10)
3041

3142
Compatible with https://github.com/thanos-io/thanos/releases/tag/v0.14.0

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ local commonConfig = {
7777
config+:: {
7878
local cfg = self,
7979
namespace: 'thanos',
80-
version: 'v0.14.0',
80+
version: 'v0.15.0',
8181
image: 'quay.io/thanos/thanos:' + cfg.version,
8282
objectStorageConfig: {
8383
name: 'thanos-objectstorage',

Diff for: example.jsonnet

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local commonConfig = {
77
config+:: {
88
local cfg = self,
99
namespace: 'thanos',
10-
version: 'v0.14.0',
10+
version: 'v0.15.0',
1111
image: 'quay.io/thanos/thanos:' + cfg.version,
1212
objectStorageConfig: {
1313
name: 'thanos-objectstorage',

Diff for: examples/thanos-receive.jsonnet

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ t.receive {
77
local tr = self,
88
name:: 'thanos-receive',
99
namespace:: 'observability',
10-
version:: 'v0.14.0',
10+
version:: 'v0.15.0',
1111
image:: 'quay.io/thanos/thanos:v' + tr.version,
1212
replicas:: 3,
1313
replicationFactor:: 3,

Diff for: manifests/thanos-query-deployment.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: query-layer
66
app.kubernetes.io/instance: thanos-query
77
app.kubernetes.io/name: thanos-query
8-
app.kubernetes.io/version: v0.14.0
8+
app.kubernetes.io/version: v0.15.0
99
name: thanos-query
1010
namespace: thanos
1111
spec:
@@ -21,7 +21,7 @@ spec:
2121
app.kubernetes.io/component: query-layer
2222
app.kubernetes.io/instance: thanos-query
2323
app.kubernetes.io/name: thanos-query
24-
app.kubernetes.io/version: v0.14.0
24+
app.kubernetes.io/version: v0.15.0
2525
spec:
2626
affinity:
2727
podAntiAffinity:
@@ -46,7 +46,7 @@ spec:
4646
- --query.replica-label=prometheus_replica
4747
- --query.replica-label=rule_replica
4848
- --store=dnssrv+_grpc._tcp.thanos-store.thanos.svc.cluster.local
49-
image: quay.io/thanos/thanos:v0.14.0
49+
image: quay.io/thanos/thanos:v0.15.0
5050
livenessProbe:
5151
failureThreshold: 4
5252
httpGet:

Diff for: manifests/thanos-query-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: query-layer
66
app.kubernetes.io/instance: thanos-query
77
app.kubernetes.io/name: thanos-query
8-
app.kubernetes.io/version: v0.14.0
8+
app.kubernetes.io/version: v0.15.0
99
name: thanos-query
1010
namespace: thanos
1111
spec:

Diff for: manifests/thanos-query-serviceMonitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: query-layer
66
app.kubernetes.io/instance: thanos-query
77
app.kubernetes.io/name: thanos-query
8-
app.kubernetes.io/version: v0.14.0
8+
app.kubernetes.io/version: v0.15.0
99
name: thanos-query
1010
namespace: thanos
1111
spec:

Diff for: manifests/thanos-store-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: object-store-gateway
66
app.kubernetes.io/instance: thanos-store
77
app.kubernetes.io/name: thanos-store
8-
app.kubernetes.io/version: v0.14.0
8+
app.kubernetes.io/version: v0.15.0
99
name: thanos-store
1010
namespace: thanos
1111
spec:

Diff for: manifests/thanos-store-serviceMonitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: object-store-gateway
66
app.kubernetes.io/instance: thanos-store
77
app.kubernetes.io/name: thanos-store
8-
app.kubernetes.io/version: v0.14.0
8+
app.kubernetes.io/version: v0.15.0
99
name: thanos-store
1010
namespace: thanos
1111
spec:

Diff for: manifests/thanos-store-statefulSet.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: object-store-gateway
66
app.kubernetes.io/instance: thanos-store
77
app.kubernetes.io/name: thanos-store
8-
app.kubernetes.io/version: v0.14.0
8+
app.kubernetes.io/version: v0.15.0
99
name: thanos-store
1010
namespace: thanos
1111
spec:
@@ -22,7 +22,7 @@ spec:
2222
app.kubernetes.io/component: object-store-gateway
2323
app.kubernetes.io/instance: thanos-store
2424
app.kubernetes.io/name: thanos-store
25-
app.kubernetes.io/version: v0.14.0
25+
app.kubernetes.io/version: v0.15.0
2626
spec:
2727
affinity:
2828
podAntiAffinity:
@@ -56,7 +56,7 @@ spec:
5656
secretKeyRef:
5757
key: thanos.yaml
5858
name: thanos-objectstorage
59-
image: quay.io/thanos/thanos:v0.14.0
59+
image: quay.io/thanos/thanos:v0.15.0
6060
livenessProbe:
6161
failureThreshold: 8
6262
httpGet:

0 commit comments

Comments
 (0)