forked from temporalio/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
374 lines (341 loc) · 8.79 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
nameOverride: ""
fullnameOverride: ""
# Chart debug mode
# (eg. disable helm hook delete policy)
debug: false
server:
enabled: true
image:
repository: temporalio/server
tag: 1.9.2
pullPolicy: IfNotPresent
# Global default settings (can be overridden per service)
replicaCount: 1
metrics:
# Annotate pods directly with Prometheus annotations.
# Use this if you installed Prometheus from a Helm chart.
annotations:
enabled: true
# Enable Prometheus ServiceMonitor
# Use this if you installed the Prometheus Operator (https://github.com/coreos/prometheus-operator).
serviceMonitor:
enabled: false
interval: 30s
# Set Prometheus metric_relabel_configs via ServiceMonitor
# Use metricRelabelings to adjust metric and label names as needed
metricRelabelings: []
# - action: replace
# sourceLabels:
# - exported_namespace
# targetLabel: temporal_namespace
# - action: replace
# regex: service_errors_(.+)
# replacement: ${1}
# sourceLabels:
# - __name__
# targetLabel: temporal_error_kind
# - action: replace
# regex: service_errors_.+
# replacement: temporal_service_errors
# sourceLabels:
# - __name__
# targetLabel: __name__
prometheus:
timerType: histogram
podAnnotations: {}
resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
additionalVolumes: []
additionalVolumeMounts: []
config:
logLevel: "debug,info"
# IMPORTANT: This value cannot be changed, once it's set.
numHistoryShards: 512
persistence:
default:
driver: "cassandra"
cassandra:
hosts: []
# port: 9042
keyspace: "temporal"
user: "user"
password: "password"
existingSecret: ""
replicationFactor: 1
consistency:
default:
consistency: "local_quorum"
serialConsistency: "local_serial"
# datacenter: "us-east-1a"
# maxQPS: 1000
# maxConns: 2
sql:
driver: "mysql"
host: "mysql"
port: 3306
database: "temporal"
user: "temporal"
password: "temporal"
existingSecret: ""
secretName: ""
maxConns: 20
maxConnLifetime: "1h"
# connectAttributes:
# tx_isolation: 'READ-COMMITTED'
visibility:
driver: "cassandra"
cassandra:
hosts: []
# port: 9042
keyspace: "temporal_visibility"
user: "user"
password: "password"
existingSecret: ""
# datacenter: "us-east-1a"
# maxQPS: 1000
# maxConns: 2
replicationFactor: 1
consistency:
default:
consistency: "local_quorum"
serialConsistency: "local_serial"
sql:
driver: "mysql"
host: "mysql"
port: 3306
database: "temporal_visibility"
user: "temporal"
password: "temporal"
existingSecret: ""
secretName: ""
maxConns: 20
maxConnLifetime: "1h"
# connectAttributes:
# tx_isolation: 'READ-COMMITTED'
frontend:
# replicaCount: 1
service:
annotations: {} # Evaluated as template
type: ClusterIP
port: 7233
metrics:
annotations:
enabled: true
serviceMonitor: {}
# enabled: false
prometheus: {}
# timerType: histogram
podAnnotations: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
history:
# replicaCount: 1
service:
# type: ClusterIP
port: 7234
metrics:
annotations:
enabled: true
serviceMonitor: {}
# enabled: false
prometheus: {}
# timerType: histogram
podAnnotations: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
matching:
# replicaCount: 1
service:
# type: ClusterIP
port: 7235
metrics:
annotations:
enabled: false
serviceMonitor: {}
# enabled: false
prometheus: {}
# timerType: histogram
podAnnotations: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
worker:
# replicaCount: 1
service:
# type: ClusterIP
port: 7239
metrics:
annotations:
enabled: true
serviceMonitor: {}
# enabled: false
prometheus: {}
# timerType: histogram
podAnnotations: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
admintools:
enabled: true
image:
repository: temporalio/admin-tools
tag: 1.9.2
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 22
annotations: {}
web:
enabled: true
replicaCount: 1
image:
repository: temporalio/web
tag: 1.9.1
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 8088
annotations: {}
# loadBalancerIP:
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: traefik
# ingress.kubernetes.io/ssl-redirect: "false"
# traefik.frontend.rule.type: PathPrefix
hosts:
- "/"
# - "domain.com/xyz"
# - "domain.com"
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
schema:
setup:
enabled: true
backoffLimit: 100
update:
enabled: true
backoffLimit: 100
elasticsearch:
enabled: true
replicas: 3
persistence:
enabled: false
imageTag: 7.10.1
host: elasticsearch-master-headless
scheme: http
port: 9200
version: "v7"
logLevel: "error"
username: ""
password: ""
visibilityIndex: "temporal-visibility-dev"
prometheus:
enabled: true
nodeExporter:
enabled: false
grafana:
enabled: true
replicas: 1
testFramework:
enabled: false
rbac:
create: false
pspEnabled: false
namespaced: true
dashboardProviders:
dashboardproviders.yaml:
apiVersion: 1
providers:
- name: 'default'
orgId: 1
folder: ''
type: file
disableDeletion: false
editable: true
options:
path: /var/lib/grafana/dashboards/default
datasources:
datasources.yaml:
apiVersion: 1
datasources:
- name: TemporalMetrics
type: prometheus
url: http://{{ .Release.Name }}-prometheus-server
access: proxy
isDefault: true
dashboards:
default:
frontend-github:
url: https://raw.githubusercontent.com/temporalio/temporal-dashboards/master/dashboards/frontend.json
datasource: TemporalMetrics
temporal-github:
url: https://raw.githubusercontent.com/temporalio/temporal-dashboards/master/dashboards/temporal.json
datasource: TemporalMetrics
history-github:
url: https://raw.githubusercontent.com/temporalio/temporal-dashboards/master/dashboards/history.json
datasource: TemporalMetrics
matching-github:
url: https://raw.githubusercontent.com/temporalio/temporal-dashboards/master/dashboards/matching.json
datasource: TemporalMetrics
clusteroverview-github:
url: https://raw.githubusercontent.com/temporalio/temporal-dashboards/master/dashboards/10000.json
datasource: TemporalMetrics
common-github:
url: https://raw.githubusercontent.com/temporalio/temporal-dashboards/master/dashboards/common.json
datasource: TemporalMetrics
cassandra:
enabled: true
persistence:
enabled: false
image:
repo: cassandra
tag: 3.11.3
pullPolicy: IfNotPresent
config:
cluster_size: 3
ports:
cql: 9042
num_tokens: 4
max_heap_size: 512M
heap_new_size: 128M
seed_size: 0
service:
type: ClusterIP
mysql:
enabled: false