Skip to content

Commit d0802db

Browse files
authored
bump to v0.6.0 (#9)
1 parent fbdcfc5 commit d0802db

File tree

4 files changed

+4
-19
lines changed

4 files changed

+4
-19
lines changed

thanos/templates/compact-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
- "compact"
3636
- "--log.level={{ .Values.compact.logLevel }}"
3737
- "--data-dir=/var/thanos/compact"
38-
- "--sync-delay={{ .Values.compact.syncDelay }}"
38+
- "--consistency-delay={{ .Values.compact.consistencyDelay }}"
3939
- "--retention.resolution-raw={{ .Values.compact.retentionResolutionRaw }}"
4040
- "--retention.resolution-5m={{ .Values.compact.retentionResolution5m }}"
4141
- "--retention.resolution-1h={{ .Values.compact.retentionResolution1h }}"

thanos/templates/query-deployment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ spec:
3434
args:
3535
- "query"
3636
- "--log.level={{ .Values.query.logLevel }}"
37-
- "--cluster.disable"
3837
{{- range .Values.query.stores }}
3938
- "--store={{ . }}"
4039
{{- end }}

thanos/templates/store-deployment.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ spec:
3535
- "store"
3636
- "--log.level={{ .Values.store.logLevel }}"
3737
- "--data-dir=/var/thanos/store"
38-
{{- if .Values.store.clusterDisabled }}
39-
- "--cluster.disable"
40-
{{- end }}
4138
{{- if .Values.s3.enabled }}
4239
- "--objstore.config-file=/thanos-s3/s3.yaml"
4340
{{- end }}

thanos/values.yaml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
image:
77
repository: improbable/thanos
8-
tag: v0.3.2
8+
tag: v0.6.0
99
pullPolicy: IfNotPresent
1010

1111
nameOverride: ""
@@ -19,16 +19,13 @@ s3:
1919
signatureV2: true
2020
encryptSse: false
2121

22-
2322
# Thanos store configuration
2423
store:
2524
enabled: true
2625
replicaCount: 1
2726

2827
logLevel: debug
2928

30-
clusterDisabled: true
31-
3229
# cert, key and ca are base64 encoded strings
3330
tlsServer:
3431
enabled: false
@@ -45,7 +42,6 @@ store:
4542
grpcPort: 10901
4643
clusterPort: 10900
4744

48-
clusterDisabled: true
4945

5046
clusterService:
5147
enabled: false
@@ -70,7 +66,6 @@ store:
7066
type: ClusterIP
7167
port: 10902
7268
nodePortEnabled: false
73-
nodePortEnabled: false
7469
nodePort: 30902
7570
externalTrafficPolicy: ""
7671
annotations: {}
@@ -119,15 +114,13 @@ query:
119114

120115
deployment:
121116
annotations: {}
122-
# iam.amazonaws.com/role: prometheus
117+
# iam.amazonaws.com/role: prometheus-thanos
123118

124119
container:
125120
httpPort: 10902
126121
grpcPort: 10901
127122
clusterPort: 10900
128123

129-
clusterDisabled: true
130-
131124
clusterService:
132125
enabled: false
133126
type: ClusterIP
@@ -151,7 +144,6 @@ query:
151144
type: ClusterIP
152145
port: 10902
153146
nodePortEnabled: false
154-
nodePortEnabled: false
155147
nodePort: 30902
156148
externalTrafficPolicy: ""
157149
annotations: {}
@@ -179,16 +171,14 @@ compact:
179171
enabled: false
180172
replicaCount: 1
181173

182-
syncDelay: 30m
174+
consistencyDelay: 30m
183175
retentionResolutionRaw: 0d
184176
retentionResolution5m: 0d
185177
retentionResolution1h: 0d
186178
wait: true
187179

188180
logLevel: debug
189181

190-
clusterDisabled: true
191-
192182
deployment:
193183
annotations: {}
194184
# iam.amazonaws.com/role: prometheus-thanos-store
@@ -203,7 +193,6 @@ compact:
203193
type: ClusterIP
204194
port: 10902
205195
nodePortEnabled: false
206-
nodePortEnabled: false
207196
nodePort: 30902
208197
externalTrafficPolicy: ""
209198
annotations: {}

0 commit comments

Comments
 (0)