Skip to content

Commit fe000a5

Browse files
authored
Merge pull request #240 from dgrisonnet/cut-release-0.22
Cut release v0.22.0
2 parents e76e196 + 733d66c commit fe000a5

File tree

61 files changed

+125
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+125
-96
lines changed

CHANGELOG.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,43 @@ We use *breaking* word for marking changes that are not backward compatible (rel
1515

1616
### Breaking Changes
1717

18+
-
19+
1820
### Changed
21+
22+
-
23+
24+
### Added
25+
26+
-
27+
28+
### Fixed
29+
30+
-
31+
32+
## [v0.22.0](https://github.com/thanos-io/kube-thanos/tree/v0.22.0) (2021-08-17)
33+
34+
### Added
35+
36+
- [#232](https://github.com/thanos-io/kube-thanos/pull/232) Support compactor hash sharding.
37+
38+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/v0.21.0...v0.22.0)
39+
40+
## [v0.21.0](https://github.com/thanos-io/kube-thanos/tree/v0.21.0) (2021-08-17)
41+
42+
### Changed
43+
1944
- [#226](https://github.com/thanos-io/kube-thanos/pull/226) Only schedule thanos components on linux nodes.
2045

2146
### Added
47+
2248
- [#228](https://github.com/thanos-io/kube-thanos/pull/228) Allow configuring `--web.prefix-header` of query.
23-
- [#232](https://github.com/thanos-io/kube-thanos/pull/232) Support compactor hash sharding.
2449

25-
### Fixed
50+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/v0.20.0...v0.21.0)
51+
52+
## [v0.20.0](https://github.com/thanos-io/kube-thanos/tree/v0.20.0) (2021-04-28)
53+
54+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/v0.19.0...v0.20.0)
2655

2756
## [v0.19.0](https://github.com/thanos-io/kube-thanos/tree/v0.19.0) (2020-04-19)
2857

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ local commonConfig = {
7676
config+:: {
7777
local cfg = self,
7878
namespace: 'thanos',
79-
version: 'v0.19.0',
79+
version: 'v0.22.0',
8080
image: 'quay.io/thanos/thanos:' + cfg.version,
8181
objectStorageConfig: {
8282
name: 'thanos-objectstorage',

all.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local t = import 'kube-thanos/thanos.libsonnet';
66
local commonConfig = {
77
local cfg = self,
88
namespace: 'thanos',
9-
version: 'v0.19.0',
9+
version: 'v0.22.0',
1010
image: 'quay.io/thanos/thanos:' + cfg.version,
1111
replicaLabels: ['prometheus_replica', 'rule_replica'],
1212
objectStorageConfig: {

example.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local commonConfig = {
66
config+:: {
77
local cfg = self,
88
namespace: 'thanos',
9-
version: 'v0.19.0',
9+
version: 'v0.22.0',
1010
image: 'quay.io/thanos/thanos:' + cfg.version,
1111
objectStorageConfig: {
1212
name: 'thanos-objectstorage',

examples/all/manifests/compact-shard0-service.yaml

Lines changed: 1 addition & 1 deletion
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-0
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.19.0
8+
app.kubernetes.io/version: v0.22.0
99
compact.thanos.io/shard: shard-0
1010
name: thanos-compact-0
1111
namespace: thanos

examples/all/manifests/compact-shard0-statefulSet.yaml

Lines changed: 3 additions & 3 deletions
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-0
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.19.0
8+
app.kubernetes.io/version: v0.22.0
99
compact.thanos.io/shard: shard-0
1010
name: thanos-compact-0
1111
namespace: thanos
@@ -24,7 +24,7 @@ spec:
2424
app.kubernetes.io/component: database-compactor
2525
app.kubernetes.io/instance: thanos-compact-0
2626
app.kubernetes.io/name: thanos-compact
27-
app.kubernetes.io/version: v0.19.0
27+
app.kubernetes.io/version: v0.22.0
2828
compact.thanos.io/shard: shard-0
2929
spec:
3030
affinity:
@@ -84,7 +84,7 @@ spec:
8484
valueFrom:
8585
fieldRef:
8686
fieldPath: status.hostIP
87-
image: quay.io/thanos/thanos:v0.19.0
87+
image: quay.io/thanos/thanos:v0.22.0
8888
livenessProbe:
8989
failureThreshold: 4
9090
httpGet:

examples/all/manifests/compact-shard1-service.yaml

Lines changed: 1 addition & 1 deletion
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-1
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.19.0
8+
app.kubernetes.io/version: v0.22.0
99
compact.thanos.io/shard: shard-1
1010
name: thanos-compact-1
1111
namespace: thanos

examples/all/manifests/compact-shard1-statefulSet.yaml

Lines changed: 3 additions & 3 deletions
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-1
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.19.0
8+
app.kubernetes.io/version: v0.22.0
99
compact.thanos.io/shard: shard-1
1010
name: thanos-compact-1
1111
namespace: thanos
@@ -24,7 +24,7 @@ spec:
2424
app.kubernetes.io/component: database-compactor
2525
app.kubernetes.io/instance: thanos-compact-1
2626
app.kubernetes.io/name: thanos-compact
27-
app.kubernetes.io/version: v0.19.0
27+
app.kubernetes.io/version: v0.22.0
2828
compact.thanos.io/shard: shard-1
2929
spec:
3030
affinity:
@@ -84,7 +84,7 @@ spec:
8484
valueFrom:
8585
fieldRef:
8686
fieldPath: status.hostIP
87-
image: quay.io/thanos/thanos:v0.19.0
87+
image: quay.io/thanos/thanos:v0.22.0
8888
livenessProbe:
8989
failureThreshold: 4
9090
httpGet:

examples/all/manifests/compact-shard2-service.yaml

Lines changed: 1 addition & 1 deletion
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-2
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.19.0
8+
app.kubernetes.io/version: v0.22.0
99
compact.thanos.io/shard: shard-2
1010
name: thanos-compact-2
1111
namespace: thanos

examples/all/manifests/compact-shard2-statefulSet.yaml

Lines changed: 3 additions & 3 deletions
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-2
77
app.kubernetes.io/name: thanos-compact
8-
app.kubernetes.io/version: v0.19.0
8+
app.kubernetes.io/version: v0.22.0
99
compact.thanos.io/shard: shard-2
1010
name: thanos-compact-2
1111
namespace: thanos
@@ -24,7 +24,7 @@ spec:
2424
app.kubernetes.io/component: database-compactor
2525
app.kubernetes.io/instance: thanos-compact-2
2626
app.kubernetes.io/name: thanos-compact
27-
app.kubernetes.io/version: v0.19.0
27+
app.kubernetes.io/version: v0.22.0
2828
compact.thanos.io/shard: shard-2
2929
spec:
3030
affinity:
@@ -84,7 +84,7 @@ spec:
8484
valueFrom:
8585
fieldRef:
8686
fieldPath: status.hostIP
87-
image: quay.io/thanos/thanos:v0.19.0
87+
image: quay.io/thanos/thanos:v0.22.0
8888
livenessProbe:
8989
failureThreshold: 4
9090
httpGet:

0 commit comments

Comments
 (0)