Skip to content

Commit a8dbf8e

Browse files
authored
Cut release v0.11.0 (#110)
* Bump version Signed-off-by: Kemal Akkoyun <[email protected]> * Update CHANGELOG Signed-off-by: Kemal Akkoyun <[email protected]>
1 parent cdc6d9c commit a8dbf8e

19 files changed

+54
-34
lines changed

Diff for: CHANGELOG.md

+24-4
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,36 @@ We use *breaking* word for marking changes that are not backward compatible (rel
1919

2020
### Added
2121

22-
- [#97](https://github.com/thanos-io/kube-thanos/pull/97) store: Enable binary index header
23-
24-
- [#99](https://github.com/thanos-io/kube-thanos/pull/99) receive: Adapt receive local endpoint to gRPC based endpoint
22+
- [#105](https://github.com/thanos-io/kube-thanos/pull/105) compactor, store: Add deduplication replica label flags and delete delay labels
2523

2624
### Fixed
2725

2826
-
2927

30-
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/53b47dd3c5c262bc17a5c37bad004839f7eda866...v0.9.0)
28+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/master...v0.11.0)
29+
30+
## [v0.11.0](https://github.com/thanos-io/kube-thanos/tree/v0.11.0) (2020-02-11)
31+
32+
Compatible with https://github.com/thanos-io/thanos/releases/tag/v0.11.0
33+
34+
### Fixed
35+
36+
- [#109](https://github.com/thanos-io/kube-thanos/pull/109) compactor: Use tc.config.replicas variable in compact component
37+
38+
### Added
39+
40+
- [#97](https://github.com/thanos-io/kube-thanos/pull/97) store: Enable binary index header
41+
42+
- [#99](https://github.com/thanos-io/kube-thanos/pull/99) receive: Adapt receive local endpoint to gRPC based endpoint
43+
44+
- [#103](https://github.com/thanos-io/kube-thanos/pull/103) *: Add termination message policy to containers
45+
46+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/v0.10.0...v0.11.0)
3147

3248
## [v0.10.0](https://github.com/thanos-io/kube-thanos/tree/v0.10.0) (2020-02-11)
3349

50+
Compatible with https://github.com/thanos-io/thanos/releases/tag/v0.10.0
51+
3452
### Breaking Changes
3553

3654
> This version includes lots of breaking changes, you may have to change your downstream changes and re-create your resources when you apply.
@@ -74,6 +92,8 @@ We use *breaking* word for marking changes that are not backward compatible (rel
7492

7593
## [v0.9.0](https://github.com/thanos-io/kube-thanos/tree/v0.9.0) (2019-12-13)
7694

95+
Compatible with https://github.com/thanos-io/thanos/releases/tag/v0.9.0
96+
7797
`Initial release:` See full changelog for long history of changes.
7898

7999

Diff for: all.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.10.1',
10+
version: 'v0.11.0',
1111
image: 'quay.io/thanos/thanos:' + cfg.version,
1212
objectStorageConfig: {
1313
name: 'thanos-objectstorage',

Diff for: examples/all/manifests/thanos-bucket-deployment.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: object-store-bucket-debugging
66
app.kubernetes.io/instance: thanos-bucket
77
app.kubernetes.io/name: thanos-bucket
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-bucket
1010
namespace: thanos
1111
spec:
@@ -21,7 +21,7 @@ spec:
2121
app.kubernetes.io/component: object-store-bucket-debugging
2222
app.kubernetes.io/instance: thanos-bucket
2323
app.kubernetes.io/name: thanos-bucket
24-
app.kubernetes.io/version: v0.10.1
24+
app.kubernetes.io/version: v0.11.0
2525
spec:
2626
containers:
2727
- args:
@@ -34,7 +34,7 @@ spec:
3434
secretKeyRef:
3535
key: thanos.yaml
3636
name: thanos-objectstorage
37-
image: quay.io/thanos/thanos:v0.10.1
37+
image: quay.io/thanos/thanos:v0.11.0
3838
livenessProbe:
3939
failureThreshold: 4
4040
httpGet:

Diff for: examples/all/manifests/thanos-bucket-service.yaml

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

Diff for: examples/all/manifests/thanos-compact-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: database-compactor
66
app.kubernetes.io/instance: thanos-compact
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-compact
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-compact-serviceMonitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: database-compactor
66
app.kubernetes.io/instance: thanos-compact
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-compact
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-compact-statefulSet.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: database-compactor
66
app.kubernetes.io/instance: thanos-compact
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-compact
1010
namespace: thanos
1111
spec:
@@ -22,7 +22,7 @@ spec:
2222
app.kubernetes.io/component: database-compactor
2323
app.kubernetes.io/instance: thanos-compact
2424
app.kubernetes.io/name: thanos-compact
25-
app.kubernetes.io/version: v0.10.1
25+
app.kubernetes.io/version: v0.11.0
2626
spec:
2727
containers:
2828
- args:
@@ -37,7 +37,7 @@ spec:
3737
secretKeyRef:
3838
key: thanos.yaml
3939
name: thanos-objectstorage
40-
image: quay.io/thanos/thanos:v0.10.1
40+
image: quay.io/thanos/thanos:v0.11.0
4141
livenessProbe:
4242
failureThreshold: 4
4343
httpGet:

Diff for: examples/all/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.10.1
8+
app.kubernetes.io/version: v0.11.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.10.1
24+
app.kubernetes.io/version: v0.11.0
2525
spec:
2626
affinity:
2727
podAntiAffinity:
@@ -47,7 +47,7 @@ spec:
4747
- --store=dnssrv+_grpc._tcp.thanos-receive.thanos.svc.cluster.local
4848
- --store=dnssrv+_grpc._tcp.thanos-rule.thanos.svc.cluster.local
4949
- --store=dnssrv+_grpc._tcp.thanos-store.thanos.svc.cluster.local
50-
image: quay.io/thanos/thanos:v0.10.1
50+
image: quay.io/thanos/thanos:v0.11.0
5151
livenessProbe:
5252
failureThreshold: 4
5353
httpGet:

Diff for: examples/all/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.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-query
1010
namespace: thanos
1111
spec:

Diff for: examples/all/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.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-query
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-receive-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: database-write-hashring
66
app.kubernetes.io/instance: thanos-receive
77
app.kubernetes.io/name: thanos-receive
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-receive
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-receive-serviceMonitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: database-write-hashring
66
app.kubernetes.io/instance: thanos-receive
77
app.kubernetes.io/name: thanos-receive
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-receive
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-receive-statefulSet.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: database-write-hashring
66
app.kubernetes.io/instance: thanos-receive
77
app.kubernetes.io/name: thanos-receive
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-receive
1010
namespace: thanos
1111
spec:
@@ -22,7 +22,7 @@ spec:
2222
app.kubernetes.io/component: database-write-hashring
2323
app.kubernetes.io/instance: thanos-receive
2424
app.kubernetes.io/name: thanos-receive
25-
app.kubernetes.io/version: v0.10.1
25+
app.kubernetes.io/version: v0.11.0
2626
spec:
2727
affinity:
2828
podAntiAffinity:
@@ -64,7 +64,7 @@ spec:
6464
secretKeyRef:
6565
key: thanos.yaml
6666
name: thanos-objectstorage
67-
image: quay.io/thanos/thanos:v0.10.1
67+
image: quay.io/thanos/thanos:v0.11.0
6868
livenessProbe:
6969
failureThreshold: 8
7070
httpGet:

Diff for: examples/all/manifests/thanos-rule-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: rule-evaluation-engine
66
app.kubernetes.io/instance: thanos-rule
77
app.kubernetes.io/name: thanos-rule
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-rule
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-rule-serviceMonitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: rule-evaluation-engine
66
app.kubernetes.io/instance: thanos-rule
77
app.kubernetes.io/name: thanos-rule
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-rule
1010
namespace: thanos
1111
spec:

Diff for: examples/all/manifests/thanos-rule-statefulSet.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: rule-evaluation-engine
66
app.kubernetes.io/instance: thanos-rule
77
app.kubernetes.io/name: thanos-rule
8-
app.kubernetes.io/version: v0.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-rule
1010
namespace: thanos
1111
spec:
@@ -22,7 +22,7 @@ spec:
2222
app.kubernetes.io/component: rule-evaluation-engine
2323
app.kubernetes.io/instance: thanos-rule
2424
app.kubernetes.io/name: thanos-rule
25-
app.kubernetes.io/version: v0.10.1
25+
app.kubernetes.io/version: v0.11.0
2626
spec:
2727
containers:
2828
- args:
@@ -44,7 +44,7 @@ spec:
4444
secretKeyRef:
4545
key: thanos.yaml
4646
name: thanos-objectstorage
47-
image: quay.io/thanos/thanos:v0.10.1
47+
image: quay.io/thanos/thanos:v0.11.0
4848
livenessProbe:
4949
failureThreshold: 24
5050
httpGet:

Diff for: examples/all/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.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-store
1010
namespace: thanos
1111
spec:

Diff for: examples/all/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.10.1
8+
app.kubernetes.io/version: v0.11.0
99
name: thanos-store
1010
namespace: thanos
1111
spec:

Diff for: examples/all/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.10.1
8+
app.kubernetes.io/version: v0.11.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.10.1
25+
app.kubernetes.io/version: v0.11.0
2626
spec:
2727
containers:
2828
- args:
@@ -38,7 +38,7 @@ spec:
3838
secretKeyRef:
3939
key: thanos.yaml
4040
name: thanos-objectstorage
41-
image: quay.io/thanos/thanos:v0.10.1
41+
image: quay.io/thanos/thanos:v0.11.0
4242
livenessProbe:
4343
failureThreshold: 8
4444
httpGet:

0 commit comments

Comments
 (0)