Skip to content

Commit 7e8fc8c

Browse files
author
Prashant Balachandran
authored
cut release v0.24.0 (#258)
Signed-off-by: Prashant Balachandran <[email protected]>
1 parent a891295 commit 7e8fc8c

File tree

73 files changed

+123
-134
lines changed

Some content is hidden

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

73 files changed

+123
-134
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,18 @@ We use *breaking* word for marking changes that are not backward compatible (rel
1515

1616
### Breaking Changes
1717

18+
### Changed
19+
20+
### Added
21+
22+
### Fixed
23+
1824
-
1925

26+
## [v0.24.0](https://github.com/thanos-io/kube-thanos/tree/v0.24.0) (2021-12-17)
27+
2028
### Changed
29+
2130
- [#254](https://github.com/thanos-io/kube-thanos/pull/254) Add support for tenant header configuration to receiver.
2231
- [#247](https://github.com/thanos-io/kube-thanos/pull/247) Make Compact service headless.
2332

@@ -29,7 +38,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel
2938
- [#260](https://github.com/thanos-io/kube-thanos/pull/260) Add support custom certificate for the object store by configuring `tlsSecretName` and `tlsSecretMountPath` in `objectStorageConfig`.
3039
- [#261](https://github.com/thanos-io/kube-thanos/pull/261) Add support for imagePullPolicy to all components.
3140

32-
### Fixed
41+
[Full Changelog](https://github.com/thanos-io/kube-thanos/compare/v0.22.0...v0.24.0)
3342

3443
-
3544

README.md

Lines changed: 1 addition & 1 deletion
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.22.0',
80+
version: 'v0.24.0',
8181
image: 'quay.io/thanos/thanos:' + cfg.version,
8282
imagePullPolicy: 'IfNotPresent',
8383
objectStorageConfig: {

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.22.0',
9+
version: 'v0.24.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.22.0',
9+
version: 'v0.24.0',
1010
image: 'quay.io/thanos/thanos:' + cfg.version,
1111
imagePullPolicy: 'IfNotPresent',
1212
objectStorageConfig: {

examples/all/manifests/thanos-bucket-deployment.yaml

Lines changed: 3 additions & 4 deletions
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.22.0
8+
app.kubernetes.io/version: v0.24.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.22.0
24+
app.kubernetes.io/version: v0.24.0
2525
spec:
2626
containers:
2727
- args:
@@ -49,8 +49,7 @@ spec:
4949
valueFrom:
5050
fieldRef:
5151
fieldPath: status.hostIP
52-
image: quay.io/thanos/thanos:v0.22.0
53-
imagePullPolicy: IfNotPresent
52+
image: quay.io/thanos/thanos:v0.24.0
5453
livenessProbe:
5554
failureThreshold: 4
5655
httpGet:

examples/all/manifests/thanos-bucket-replicate-deployment.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
app.kubernetes.io/component: object-store-bucket-replicate
66
app.kubernetes.io/instance: thanos-bucket-replicate
77
app.kubernetes.io/name: thanos-bucket-replicate
8-
app.kubernetes.io/version: v0.22.0
8+
app.kubernetes.io/version: v0.24.0
99
name: thanos-bucket-replicate
1010
namespace: thanos
1111
spec:
@@ -21,7 +21,7 @@ spec:
2121
app.kubernetes.io/component: object-store-bucket-replicate
2222
app.kubernetes.io/instance: thanos-bucket-replicate
2323
app.kubernetes.io/name: thanos-bucket-replicate
24-
app.kubernetes.io/version: v0.22.0
24+
app.kubernetes.io/version: v0.24.0
2525
spec:
2626
containers:
2727
- args:
@@ -57,8 +57,7 @@ spec:
5757
valueFrom:
5858
fieldRef:
5959
fieldPath: status.hostIP
60-
image: quay.io/thanos/thanos:v0.22.0
61-
imagePullPolicy: IfNotPresent
60+
image: quay.io/thanos/thanos:v0.24.0
6261
livenessProbe:
6362
failureThreshold: 4
6463
httpGet:

examples/all/manifests/thanos-bucket-replicate-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: object-store-bucket-replicate
66
app.kubernetes.io/instance: thanos-bucket-replicate
77
app.kubernetes.io/name: thanos-bucket-replicate
8-
app.kubernetes.io/version: v0.22.0
8+
app.kubernetes.io/version: v0.24.0
99
name: thanos-bucket-replicate
1010
namespace: thanos
1111
spec:

examples/all/manifests/thanos-bucket-replicate-serviceAccount.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ metadata:
55
app.kubernetes.io/component: object-store-bucket-replicate
66
app.kubernetes.io/instance: thanos-bucket-replicate
77
app.kubernetes.io/name: thanos-bucket-replicate
8-
app.kubernetes.io/version: v0.22.0
8+
app.kubernetes.io/version: v0.24.0
99
name: thanos-bucket-replicate
1010
namespace: thanos

examples/all/manifests/thanos-bucket-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: object-store-bucket-debugging
66
app.kubernetes.io/instance: thanos-bucket
77
app.kubernetes.io/name: thanos-bucket
8-
app.kubernetes.io/version: v0.22.0
8+
app.kubernetes.io/version: v0.24.0
99
name: thanos-bucket
1010
namespace: thanos
1111
spec:

examples/all/manifests/thanos-bucket-serviceAccount.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ 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.22.0
8+
app.kubernetes.io/version: v0.24.0
99
name: thanos-bucket
1010
namespace: thanos

0 commit comments

Comments
 (0)