forked from getredash/contrib-helm-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
660 lines (575 loc) · 28.1 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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
## Default values for Redash.
## This is a YAML-formatted file.
image:
# image.repository -- Redash image name used for server and worker pods
repository: redash/redash
# image.tag -- Redash image [tag](https://hub.docker.com/r/redash/redash/tags)
tag: 10.0.0.b50363
# image.pullPolicy - Image pull policy
pullPolicy: IfNotPresent
# imagePullSecrets -- Name(s) of secrets to use if pulling images from a private registry
imagePullSecrets: []
# nameOverride - Override the autogenerated release name based chart name
nameOverride: ""
fullnameOverride: ""
# env -- Redash global environment variables - applied to both server and worker containers.
env:
PYTHONUNBUFFERED: 0
## Service account and security context configuration
serviceAccount:
# serviceAccount.create -- Specifies whether a service account should be created
create: true
# serviceAccount.annotations -- Annotations to add to the service account
annotations: {}
# serviceAccount.name -- The name of the service account to use. If not set and create is true, a name is generated using the fullname template
name:
## Redash application configuration
redash:
## Start primary Redash configuration
## Note that we document the Redash defaults, but don't explicitly set them.
## This allows multiple versions of Redash (which may have different defaults) to be more easily used
# -- REQUIRED `REDASH_SECRET_KEY` value. Secret key used for data encryption. Stored as a Secret value.
secretKey: ""
# -- `REDASH_SAML_SCHEME_OVERRIDE` value. This setting will allow you to override the saml auth url scheme that gets constructed by flask. this is a useful feature if, for example, you're behind a proxy protocol enabled tcp load balancer (aws elb that terminates ssl) and your nginx proxy or similar adds a x-forwarded-proto of http even though your redash url for saml auth is https..
samlSchemeOverride: ""
# -- `REDASH_PROXIES_COUNT` value.
# @default -- 1
proxiesCount: ""
# -- `REDASH_STATSD_HOST` value.
# @default -- 127.0.0.1
statsdHost: ""
# -- `REDASH_STATSD_PORT` value.
# @default -- 8125
statsdPort: ""
# -- `REDASH_STATSD_PREFIX` value.
# @default -- redash
statsdPrefix: ""
# -- `REDASH_STATSD_USE_TAGS` value. Whether to use tags in statsd metrics (influxdb’s format).
# @default -- false
statsdUseTags: ""
# -- `REDASH_CELERY_BROKER` value.
# @default -- REDIS_URL
celeryBroker: ""
# -- `REDASH_CELERY_BACKEND` value.
# @default -- CELERY_BROKER
celeryBackend: ""
# -- `REDASH_CELERY_TASK_RESULT_EXPIRES` value. How many seconds to keep celery task results in cache (in seconds).
# @default -- 3600 \* 4
celeryTaskResultExpires: ""
# -- `REDASH_QUERY_RESULTS_CLEANUP_ENABLED` value.
# @default -- true
queryResultsCleanupEnabled: ""
# -- `REDASH_QUERY_RESULTS_CLEANUP_COUNT` value.
# @default -- 100
queryResultsCleanupCount: ""
# -- `REDASH_QUERY_RESULTS_CLEANUP_MAX_AGE` value.
# @default -- 7
queryResultsCleanupMaxAge: ""
# -- `REDASH_SCHEMAS_REFRESH_QUEUE` value. The celery queue for refreshing the data source schemas.
# @default -- celery
schemasRefreshQueue: ""
# -- `REDASH_SCHEMAS_REFRESH_SCHEDULE` value. How often to refresh the data sources schemas (in minutes).
# @default -- 30
schemasRefreshSchedule: ""
# -- `REDASH_AUTH_TYPE` value.
# @default -- api_key
authType: ""
# -- `REDASH_ENFORCE_HTTPS` value.
# @default -- false
enforceHttps: ""
# -- `REDASH_INVITATION_TOKEN_MAX_AGE` value.
# @default -- 60 _ 60 _ 24 \* 7
invitationTokenMaxAge: ""
# -- `REDASH_MULTI_ORG` value.
# @default -- false
multiOrg: ""
# -- `REDASH_GOOGLE_CLIENT_ID` value.
googleClientId: ""
# -- `REDASH_GOOGLE_CLIENT_SECRET` value. Stored as a Secret value.
googleClientSecret: ""
# -- `REDASH_REMOTE_USER_LOGIN_ENABLED` value.
# @default -- false
remoteUserLoginEnabled: ""
# -- `REDASH_REMOTE_USER_HEADER` value.
# @default -- X-Forwarded-Remote-User
remoteUserHeader: ""
# -- `REDASH_LDAP_LOGIN_ENABLED` value.
# @default -- false
ldapLoginEnabled: ""
# -- `REDASH_LDAP_URL` value.
# @default -- None
ldapUrl: ""
# -- `REDASH_LDAP_BIND_DN` value.
# @default -- None
ldapBindDn: ""
# -- `REDASH_LDAP_BIND_DN_PASSWORD` value. Stored as a Secret value.
ldapBindDnPassword: ""
# -- `REDASH_LDAP_DISPLAY_NAME_KEY` value.
# @default -- displayName
ldapDisplayNameKey: ""
# -- `REDASH_LDAP_EMAIL_KEY` value.
# @default -- mail
ldapEmailKey: ""
# -- `REDASH_LDAP_CUSTOM_USERNAME_PROMPT` value.
# @default -- LDAP/AD/SSO username:
ldapCustomUsernamePrompt: ""
# -- `REDASH_LDAP_SEARCH_TEMPLATE` value.
# @default -- (cn=%(username)s)
ldapSearchTemplate: ""
# -- `REDASH_LDAP_SEARCH_DN` value.
# @default -- REDASH_SEARCH_DN
ldapSearchDn: ""
# -- `REDASH_STATIC_ASSETS_PATH` value.
# @default -- ”../client/dist/”
staticAssetsPath: ""
# -- `REDASH_JOB_EXPIRY_TIME` value.
# @default -- 3600 \* 12
jobExpiryTime: ""
# -- REQUIRED `REDASH_COOKIE_SECRET` value. Stored as a Secret value.
cookieSecret: ""
# -- `REDASH_LOG_LEVEL` value.
# @default -- INFO
logLevel: ""
# -- `REDASH_MAIL_SERVER` value.
# @default -- localhost
mailServer: ""
# -- `REDASH_MAIL_PORT` value.
# @default -- 25
mailPort: ""
# -- `REDASH_MAIL_USE_TLS` value.
# @default -- false
mailUseTls: ""
# -- `REDASH_MAIL_USE_SSL` value.
# @default -- false
mailUseSsl: ""
# -- `REDASH_MAIL_USERNAME` value.
# @default -- None
mailUsername: ""
# -- `REDASH_MAIL_PASSWORD` value. Stored as a Secret value.
# @default -- None
mailPassword: ""
# -- `REDASH_MAIL_DEFAULT_SENDER` value.
# @default -- None
mailDefaultSender: ""
# -- `REDASH_MAIL_MAX_EMAILS` value.
# @default -- None
mailMaxEmails: ""
# -- `REDASH_MAIL_ASCII_ATTACHMENTS` value.
# @default -- false
mailAsciiAttachments: ""
# -- `REDASH_HOST` value.
host: ""
# -- `REDASH_ALERTS_DEFAULT_MAIL_SUBJECT_TEMPLATE` value.
# @default -- ({state}) {alert_name}
alertsDefaultMailSubjectTemplate: ""
# -- `REDASH_THROTTLE_LOGIN_PATTERN` value.
# @default -- 50/hour
throttleLoginPattern: ""
# -- `REDASH_LIMITER_STORAGE` value.
# @default -- REDIS_URL
limiterStorage: ""
# -- `REDASH_CORS_ACCESS_CONTROL_ALLOW_ORIGIN` value.
corsAccessControlAllowOrigin: ""
# -- `REDASH_CORS_ACCESS_CONTROL_ALLOW_CREDENTIALS` value.
# @default -- false
corsAccessControlAllowCredentials: ""
# -- `REDASH_CORS_ACCESS_CONTROL_REQUEST_METHOD` value.
# @default -- GET, POST, PUT
corsAccessControlRequestMethod: ""
# -- `REDASH_CORS_ACCESS_CONTROL_ALLOW_HEADERS` value.
# @default -- Content-Type
corsAccessControlAllowHeaders: ""
# -- `REDASH_ENABLED_QUERY_RUNNERS` value.
# @default -- ”,”.join(default_query_runners)
enabledQueryRunners: ""
# -- `REDASH_ADDITIONAL_QUERY_RUNNERS` value.
additionalQueryRunners: ""
# -- `REDASH_DISABLED_QUERY_RUNNERS` value.
disabledQueryRunners: ""
# -- `REDASH_SCHEDULED_QUERY_TIME_LIMIT` value. Time limit for scheduled queries (in seconds).
# @default -- None
scheduledQueryTimeLimit: ""
# -- `REDASH_ADHOC_QUERY_TIME_LIMIT` value. Time limit for adhoc queries (in seconds).
# @default -- None
adhocQueryTimeLimit: ""
# -- `REDASH_ENABLED_DESTINATIONS` value.
# @default -- ”,”.join(default_destinations)
enabledDestinations: ""
# -- `REDASH_ADDITIONAL_DESTINATIONS` value.
additionalDestinations: ""
# -- `REDASH_EVENT_REPORTING_WEBHOOKS` value.
eventReportingWebhooks: ""
# -- `REDASH_SENTRY_DSN` value.
sentryDsn: ""
# -- `REDASH_ALLOW_SCRIPTS_IN_USER_INPUT` value. Disable sanitization of text input, allowing full html.
# @default -- false
allowScriptsInUserInput: ""
# -- `REDASH_DASHBOARD_REFRESH_INTERVALS` value.
# @default -- 60,300,600,1800,3600,43200,86400
dashboardRefreshIntervals: ""
# -- `REDASH_QUERY_REFRESH_INTERVALS` value.
# @default -- 60, 300, 600, 900, 1800, 3600, 7200, 10800, 14400, 18000, 21600, 25200, 28800, 32400, 36000, 39600, 43200, 86400, 604800, 1209600, 2592000
queryRefreshIntervals: ""
# -- `REDASH_PASSWORD_LOGIN_ENABLED` value.
# @default -- true
passwordLoginEnabled: ""
# -- `REDASH_SAML_METADATA_URL` value.
samlMetadataUrl: ""
# -- `REDASH_SAML_ENTITY_ID` value.
samlEntityId: ""
# -- `REDASH_SAML_NAMEID_FORMAT` value.
samlNameidFormat: ""
# -- `REDASH_DATE_FORMAT` value.
# @default -- DD/MM/YY
dateFormat: ""
# -- `REDASH_JWT_LOGIN_ENABLED` value.
# @default -- false
jwtLoginEnabled: ""
# -- `REDASH_JWT_AUTH_ISSUER` value.
jwtAuthIssuer: ""
# -- `REDASH_JWT_AUTH_PUBLIC_CERTS_URL` value.
jwtAuthPublicCertsUrl: ""
# -- `REDASH_JWT_AUTH_AUDIENCE` value.
jwtAuthAudience: ""
# -- `REDASH_JWT_AUTH_ALGORITHMS` value.
# @default -- HS256,RS256,ES256
jwtAuthAlgorithms: ""
# -- `REDASH_JWT_AUTH_COOKIE_NAME` value.
jwtAuthCookieName: ""
# -- `REDASH_JWT_AUTH_HEADER_NAME` value.
jwtAuthHeaderName: ""
# -- `REDASH_FEATURE_SHOW_QUERY_RESULTS_COUNT` value. Disable/enable showing count of query results in status.
# @default -- true
featureShowQueryResultsCount: ""
# -- `REDASH_VERSION_CHECK` value.
# @default -- true
versionCheck: ""
# -- `REDASH_FEATURE_DISABLE_REFRESH_QUERIES` value. Disable scheduled query execution.
# @default -- false
featureDisableRefreshQueries: ""
# -- `REDASH_FEATURE_SHOW_PERMISSIONS_CONTROL` value.
# @default -- false
featureShowPermissionsControl: ""
# -- `REDASH_FEATURE_ALLOW_CUSTOM_JS_VISUALIZATIONS` value.
# @default -- false
featureAllowCustomJsVisualizations: ""
# -- `REDASH_FEATURE_DUMB_RECENTS` value.
# @default -- false
featureDumbRecents: ""
# -- `REDASH_FEATURE_AUTO_PUBLISH_NAMED_QUERIES` value.
# @default -- true
featureAutoPublishNamedQueries: ""
# -- `REDASH_FEATURE_EXTENDED_ALERT_OPTIONS` value. Disable/enable custom template for alert.
# @default -- false
featureExtendedAlertOptions: ""
# -- `REDASH_BIGQUERY_HTTP_TIMEOUT` value.
# @default -- 600
bigqueryHttpTimeout: ""
# -- `REDASH_SCHEMA_RUN_TABLE_SIZE_CALCULATIONS` value.
# @default -- false
schemaRunTableSizeCalculations: ""
# -- `REDASH_WEB_WORKERS` value. How many processes will gunicorn spawn to handle web requests.
# @default -- 4
webWorkers: ""
## End primary Redash configuration
# -- `SQLALCHEMY_ENABLE_POOL_PRE_PING` value, controls whether the database connection that's in the pool will be checked by pinging before being used or not. See https://docs.sqlalchemy.org/en/13/core/pooling.html#sqlalchemy.pool.Pool.params.pre_ping
# @default -- true
sqlAlchemyEnablePoolPrePing: "true"
# redash.existingSecret -- Name of existing secret to use instead of either the values above
## This secret must contain keys matching the items marked "Stored as a Secret value" above.
# existingSecret:
## Configuration for Redash web server
server:
# server.httpPort -- Server container port (only useful if you are using a customized image)
httpPort: 5000
# server.env -- Redash server specific environment variables
# Don't use this for variables that are in the configuration above, however.
env: {}
# server.replicaCount -- Number of server pods to run
replicaCount: 1
# server.resources -- Server resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
{}
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# server.podSecurityContext -- Security contexts for server pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# server.nodeSelector -- Node labels for server pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# server.tolerations -- Tolerations for server pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# server.affinity -- Affinity for server pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# server.podAnnotations -- Annotations for server pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
# server.podLabels -- Labels for server pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)
podLabels: {}
# server.volumes -- Volumes for server pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumes: []
# server.volumeMounts -- VolumeMounts for server pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumeMounts: []
service:
# service.annotations -- Annotations to add to the service
annotations: {}
# service.loadBalancerIP -- Specific IP address to use for cloud providers such as Azure Kubernetes Service [ref](https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer)
loadBalancerIP:
# service.type -- Kubernetes Service type
type: ClusterIP
# service.port -- Service external port
port: 80
ingress:
# ingress.enabled -- Enable ingress controller resource
enabled: false
# ingress.annotations -- Ingress annotations configuration
annotations: {}
# ingress.ingressClassName -- Sets the ingress controller class name to use.
ingressClassName: ""
# ingress.hosts -- Ingress resource hostnames and path mappings
hosts:
- host: chart-example.local
paths: []
#ingress.pathType -- How ingress paths should be treated.
pathType: Prefix
# ingress.tls -- Ingress TLS configuration
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
## Configuration for Redash ad-hoc workers
adhocWorker:
# adhocWorker.env -- Redash ad-hoc worker specific environment variables.
env:
QUEUES: "queries"
WORKERS_COUNT: 2
# adhocWorker.replicaCount -- Number of ad-hoc worker pods to run
replicaCount: 1
# adhocWorker.resources -- Ad-hoc worker resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# adhocWorker.podSecurityContext -- Security contexts for ad-hoc worker pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# adhocWorker.nodeSelector -- Node labels for ad-hoc worker pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# adhocWorker.tolerations -- Tolerations for ad-hoc worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# adhocWorker.affinity -- Affinity for ad-hoc worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# adhocWorker.podAnnotations -- Annotations for adhoc worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
# adhocWorker.podLabels -- Labels for adhoc worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)
podLabels: {}
# adhocWorker.volumes -- Volumes for ad-hoc pod worker assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumes: []
# adhocWorker.volumeMounts -- VolumeMounts for ad-hoc worker pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumeMounts: []
## Configuration for Redash scheduled workers
scheduledWorker:
# scheduledWorker.env -- Redash scheduled worker specific environment variables.
env:
QUEUES: "scheduled_queries,schemas"
WORKERS_COUNT: 1
# scheduledWorker.replicaCount -- Number of scheduled worker pods to run
replicaCount: 1
# scheduledWorker.resources -- Scheduled worker resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# scheduledWorker.podSecurityContext -- Security contexts for scheduled worker pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# scheduledWorker.nodeSelector -- Node labels for scheduled worker pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# scheduledWorker.tolerations -- Tolerations for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# scheduledWorker.affinity -- Affinity for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# scheduledWorker.podAnnotations -- Annotations for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
# scheduledWorker.podLabels -- Labels for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)
podLabels: {}
# scheduledWorker.volumes -- Volumes for scheduled pod worker assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumes: []
# scheduledWorker.volumeMounts -- VolumeMounts for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumeMounts: []
## Configuration for Redash scheduler
scheduler:
# scheduler.env -- Redash scheduler specific environment variables.
env: {}
# scheduler.replicaCount -- Number of scheduler pods to run
replicaCount: 1
# scheduler.resources -- scheduler resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# scheduler.podSecurityContext -- Security contexts for scheduler pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# scheduler.nodeSelector -- Node labels for scheduler pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# scheduler.tolerations -- Tolerations for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# scheduler.affinity -- Affinity for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# scheduler.podAnnotations -- Annotations for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
# scheduler.podLabels -- Labels for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)
podLabels: {}
# scheduler.volumes -- Volumes for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumes: []
# scheduler.volumeMounts -- VolumeMounts for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumeMounts: []
## Configuration for Redash generic workers
genericWorker:
# genericWorker.env -- Redash generic worker specific environment variables.
env:
QUEUES: "periodic,emails,default"
WORKERS_COUNT: 1
# genericWorker.replicaCount -- Number of generic worker pods to run
replicaCount: 1
# genericWorker.resources -- Generic worker resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# genericWorker.podSecurityContext -- Security contexts for generic worker pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# genericWorker.nodeSelector -- Node labels for generic worker pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# genericWorker.tolerations -- Tolerations for generic worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# genericWorker.affinity -- Affinity for generic worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# genericWorker.podAnnotations -- Annotations for generic worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
# genericWorker.podLabels -- Labels for generic worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)
podLabels: {}
# genericWorker.volumes -- Volumes for generic worker pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumes: []
# genericWorker.volumeMounts -- VolumeMounts for generic worker pod assignment [ref](https://kubernetes.io/docs/concepts/storage/volumes/)
volumeMounts: []
## Configuration for hook-install-job
hookInstallJob:
# hookInstallJob.ttlSecondsAfterFinished -- ttl for install job [ref](https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/)
ttlSecondsAfterFinished: 600
# hookInstallJob.resources -- Scheduled worker resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# hookInstallJob.podSecurityContext -- Security contexts for scheduled worker pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# hookInstallJob.nodeSelector -- Node labels for scheduled worker pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# hookInstallJob.tolerations -- Tolerations for server pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# hookInstallJob.affinity -- Affinity for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# hookInstallJob.podAnnotations -- Annotations for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
## Configuration for hook-upgrade-job
hookUpgradeJob:
# hookUpgradeJob.ttlSecondsAfterFinished -- ttl for install job [ref](https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/)
ttlSecondsAfterFinished: 600
# hookUpgradeJob.resources -- Scheduled worker resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)
resources:
# limits:
# cpu: 500m
# memory: 3Gi
# requests:
# cpu: 100m
# memory: 500Mi
# hookUpgradeJob.podSecurityContext -- Security contexts for scheduled worker pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)
podSecurityContext: {}
securityContext: {}
# hookUpgradeJob.nodeSelector -- Node labels for scheduled worker pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)
nodeSelector: {}
# hookUpgradeJob.tolerations -- Tolerations for server pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
tolerations: []
# hookUpgradeJob.affinity -- Affinity for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)
affinity: {}
# hookUpgradeJob.podAnnotations -- Annotations for scheduled worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)
podAnnotations: {}
# externalPostgreSQL -- External PostgreSQL configuration. To use an external PostgreSQL instead of the automatically deployed postgresql chart: set postgresql.enabled to false then uncomment and configure the externalPostgreSQL connection URL (e.g. postgresql://user:pass@host:5432/database)
externalPostgreSQL:
# externalPostgreSQLSecret -- Read external PostgreSQL configuration from a secret. This should point at a secret file with a single key which specifies the connection string.
externalPostgreSQLSecret:
{}
# name: redash-postgres
# key: connectionString
# envSecretName -- DEPRECIATED, use externalPostgreSQLSecret/externalRedisSecret instead. Contents of this secret will be loaded as environment variables into the container. Useful e.g. to set to set PostgreSQL password in externalPostgreSQL parameter: postgresql://user:$(POSTGRESQL_PASSWORD)@host:5432/database [ref](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/#using-environment-variables-inside-of-your-config)
# envSecretName:
## Configuration values for the postgresql dependency. This PostgreSQL instance is used by default for all Redash state storage [ref](https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md)
postgresql:
# postgresql.enabled -- Whether to deploy a PostgreSQL server to satisfy the applications database requirements. To use an external PostgreSQL set this to false and configure the externalPostgreSQL parameter.
enabled: true
image:
# postgresql.image.tag -- Bitnami supported version close to the one specified in Redash [setup docker-compose.yml](https://github.com/getredash/setup/blob/master/data/docker-compose.yml)
tag: "9.6.17-debian-10-r3"
# postgresql.postgresqlUsername -- PostgreSQL username for redash user (when postgresql chart enabled)
postgresqlUsername: redash
# postgresql.postgresqlPassword -- REQUIRED: PostgreSQL password for redash user (when postgresql chart enabled)
postgresqlPassword:
# postgresql.postgresqlDatabase -- PostgreSQL database name (when postgresql chart enabled)
postgresqlDatabase: redash
service:
type: ClusterIP
port: 5432
persistence:
# postgresql.persistence.enabled -- Use a PVC to persist PostgreSQL data (when postgresql chart enabled)
enabled: true
# postgresql.persistence.storageClass - Storage Class for PostgreSQL backing PVC. If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack).
storageClass: ""
# postgresql.persistence.accessMode -- Use PostgreSQL volume as ReadOnly or ReadWrite
accessMode: ReadWriteOnce
# postgresql.persistence.size -- PVC Storage Request size for PostgreSQL volume
size: 10Gi
# postgresql.persistence.existingClaim -- Provide an existing PostgreSQL PersistentVolumeClaim
# existingClaim: ""
# externalRedis -- External Redis configuration. To use an external Redis instead of the automatically deployed redis chart: set redis.enabled to false then uncomment and configure the externalRedis connection URL (e.g. redis://user:pass@host:6379/database).
externalRedis:
# externalRedisSecret -- Read external Redis configuration from a secret. This should point at a secret file with a single key which specifies the connection string.
externalRedisSecret:
{}
# name: redash-redis
# key: connectionString
## Configuration values for the redis dependency. This Redis instance is used by default for caching and temporary storage [ref](https://github.com/kubernetes/charts/blob/master/stable/redis/README.md)
redis:
# redis.enabled -- Whether to deploy a Redis server to satisfy the applications database requirements. To use an external Redis set this to false and configure the externalRedis parameter.
enabled: true
# redis.password -- If the password is not specified, a random password will be generated (when redis chart enabled)
# password:
# redis.databaseNumber -- Redis database number to use (when redis chart enabled)
databaseNumber: 0
master:
# redis.master.port -- Redis master port to use (when redis chart enabled)
port: 6379
cluster:
# redis.databaseNumber -- Enable Redis clustering (when redis chart enabled)
enabled: false