forked from getredash/contrib-helm-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
600 lines (518 loc) · 27.7 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
## 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_DISABLE_PUBLIC_URLS` value. Whether to disable access to public urls.
# @default -- "false"
disablePublicUrls: ""
# -- `REDASH_BLOCKED_DOMAINS` value. Comma separated of email domains that cannot create user accounts.
# @default -- "qq.com"
blockedDomains: ""
# -- `REDASH_PROXIES_COUNT` value. Passed to werkzeug's [proxyfix](https://werkzeug.palletsprojects.com/en/2.1.x/middleware/proxy_fix/) to make sure we get the right referral address even behind proxies like nginx..
# @default -- 1
proxiesCount: ""
# -- `REDASH_STATSD_HOST` value. Host for statsd daemon.
# @default -- 127.0.0.1
statsdHost: ""
# -- `REDASH_STATSD_PORT` value. Port for statsd daemon.
# @default -- 8125
statsdPort: ""
# -- `REDASH_STATSD_PREFIX` value. Prefix for metrics sent to statsd daemon.
# @default -- redash
statsdPrefix: ""
# -- `REDASH_STATSD_USE_TAGS` value. Whether to use tags in statsd metrics (influxdb’s format).
# @default -- false
statsdUseTags: ""
# -- `REDASH_QUERY_RESULTS_CLEANUP_ENABLED` value. Whether the job to cleanup unused query results should run automatically.
# @default -- true
queryResultsCleanupEnabled: ""
# -- `REDASH_QUERY_RESULTS_CLEANUP_COUNT` value. The number of results to cleanup during each call to `cleanup_query_results`.
# @default -- 100
queryResultsCleanupCount: ""
# -- `REDASH_QUERY_RESULTS_CLEANUP_MAX_AGE` value. Integer number of days, past which a query result may be cleaned up if it is not referenced by another query..
# @default -- 7
queryResultsCleanupMaxAge: ""
# -- `REDASH_SCHEMAS_REFRESH_SCHEDULE` value. How often to refresh the data source schemas (in minutes).
# @default -- 30
schemasRefreshSchedule: ""
# -- `REDASH_AUTH_TYPE` value. May be either `api_key` or `hmac`. implemented [here](https://github.com/getredash/redash/pull/385).
# @default -- api_key
authType: ""
# -- `REDASH_ENFORCE_HTTPS` value. This is passed to [flask-talisman](https://github.com/googlecloudplatform/flask-talisman).
# @default -- false
enforceHttps: ""
# -- `REDASH_INVITATION_TOKEN_MAX_AGE` value. An integer number of seconds after which an invitation link will expire.
# @default -- 60 _ 60 _ 24 \* 7
invitationTokenMaxAge: ""
# -- `REDASH_MULTI_ORG` value. Whether to enable multi-org mode. **note**: multi-org mode is not documented or supported at this time.
# @default -- false
multiOrg: ""
# -- `REDASH_GOOGLE_CLIENT_ID` value. The client id to use for google login, be sure to set a client secret as well.
googleClientId: ""
# -- `REDASH_GOOGLE_CLIENT_SECRET` value. The client secret to use for google login, be sure to set a client id as well. Stored as a Secret value.
googleClientSecret: ""
# -- `REDASH_REMOTE_USER_LOGIN_ENABLED` value. Enables the use of an externally-provided and trusted remote user via an http header. the "user" must be an email address. [more details](https://github.com/getredash/redash/blob/e6ebef1e5ab866ce1e706eaee6260edaffdc2bd7/redash/settings/__init__.py#l185-l207).
# @default -- false
remoteUserLoginEnabled: ""
# -- `REDASH_REMOTE_USER_HEADER` value. Name of header to use if `redash_remote_user_login_enabled` is true.
# @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. Directory that contains all front-end assets. relative to the ./redash directory.
# @default -- ”../client/dist/”
staticAssetsPath: ""
# -- `REDASH_JOB_EXPIRY_TIME` value. Ttl in seconds for jobs placed in queue. if a job is not picked up by a worker within this ttl it will expire..
# @default -- 3600 \* 12
jobExpiryTime: ""
# -- REQUIRED `REDASH_COOKIE_SECRET` value. Required. used for various cryptographic features of the web server. read more about how redash uses secret keys [here]({% link _kb/open-source/admin-guide/secrets.md %}). Stored as a Secret value.
cookieSecret: ""
# -- `REDASH_LOG_LEVEL` value. Logging messages which are less severe than level will be ignored. read more about python logging [here](https://docs.python.org/3/library/logging.html).
# @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. The url host used in emails sent to users (invites, alerts, notifications) etc..
host: ""
# -- `REDASH_ALERTS_DEFAULT_MAIL_SUBJECT_TEMPLATE` value. Subject used for email alert notifications. `{state}` and `{alert_name}` are the only available variables..
# @default -- ({state}) {alert_name}
alertsDefaultMailSubjectTemplate: ""
# -- `REDASH_THROTTLE_LOGIN_PATTERN` value. The [flask-limiter](https://flask-limiter.readthedocs.io/en/stable/) string pattern used to rate limit requests to the /login route..
# @default -- 50/hour
throttleLoginPattern: ""
# -- `REDASH_LIMITER_STORAGE` value. Mapped directly to flask-limiter's [storage_uri](https://flask-limiter.readthedocs.io/en/stable/configuration.html?highlight=limiter_storage#ratelimit_storage_uri)..
# @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. Comma-separated list of query runners to be enabled (e.g. `redash.query_runner.pg,redash.query_runner.mysql`).
# @default -- ”,”.join(default_query_runners)
enabledQueryRunners: ""
# -- `REDASH_ADDITIONAL_QUERY_RUNNERS` value. Comma-separated list of non-default query runners to be enabled.
additionalQueryRunners: ""
# -- `REDASH_DISABLED_QUERY_RUNNERS` value. Comma-separated list of query runners that will not appear in redash.
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. Comma-separated list of alert destinations to be enabled (e.g. `redash.destinations.email,redash.destinations.slack` ).
# @default -- ”,”.join(default_destinations)
enabledDestinations: ""
# -- `REDASH_ADDITIONAL_DESTINATIONS` value. Comma-separated list of non-default alert destinations to be enabled.
additionalDestinations: ""
# -- `REDASH_EVENT_REPORTING_WEBHOOKS` value. Comma-separated list of webhook urls that to which events will be forwarded.
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. Comma-separated list of integer seconds that will be allowed for dashboard refresh.
# @default -- 60,300,600,1800,3600,43200,86400
dashboardRefreshIntervals: ""
# -- `REDASH_QUERY_REFRESH_INTERVALS` value. Comma-separated list of integer seconds that will be allowed for scheduled query refresh.
# @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. Toggle to allow password login. often disabled if google login, saml, ldap, or remote_user_login are enabled..
# @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. Moment.js format to be used throughout the web application.
# @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. Toggle whether to periodically check if a newer version of redash is available..
# @default -- true
versionCheck: ""
# -- `REDASH_FEATURE_DISABLE_REFRESH_QUERIES` value. Disable scheduled query execution.
# @default -- false
featureDisableRefreshQueries: ""
# -- `REDASH_FEATURE_SHOW_PERMISSIONS_CONTROL` value. Enable experimental multiple owners support.
# @default -- false
featureShowPermissionsControl: ""
# -- `REDASH_FEATURE_ALLOW_CUSTOM_JS_VISUALIZATIONS` value. Enable the custom visualization option. this appears as a sub-type of "chart" visualizations in the ui..
# @default -- false
featureAllowCustomJsVisualizations: ""
# -- `REDASH_FEATURE_AUTO_PUBLISH_NAMED_QUERIES` value. Automatically publish a new query after its name is changed from "new query".
# @default -- true
featureAutoPublishNamedQueries: ""
# -- `REDASH_BIGQUERY_HTTP_TIMEOUT` value. Http timeout for the bigquery query runner.
# @default -- 600
bigqueryHttpTimeout: ""
# -- `REDASH_SCHEMA_RUN_TABLE_SIZE_CALCULATIONS` value. Enable showing the size of each table in the schema browser..
# @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.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. 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
# externalRedis -- External Redis configuration. 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