forked from getredash/contrib-helm-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
214 lines (184 loc) · 6.16 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
## Default values for Redash.
## This is a YAML-formatted file.
## Image used for server and worker pods
##
image:
repository: redash/redash
tag: 8.0.1.b33387
pullPolicy: IfNotPresent
## Override the name of the chart
##
nameOverride: ""
## Redash global envrionment variables - applied to both server and worker containers
## Add any environment variables from https://redash.io/help-onpremise/setup/settings-environment-variables.html
##
env:
PYTHONUNBUFFERED: 0
REDASH_LOG_LEVEL: "INFO"
## Configuration for Redash web server
##
server:
## Server container port (only useful if you are using a customized image)
httpPort: 5000
## Secure value for session cookie secret - if not set a random value will be generated
# cookieSecret: ""
## Secure value for encryption your data sources configuration - if not set a random value will be generated
# secretKey: ""
## Redash server specific envrionment variables
## Add any environment variables from https://redash.io/help-onpremise/setup/settings-environment-variables.html
##
env:
REDASH_WEB_WORKERS: 4
replicaCount: 1
## Server resource requests and limits
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
# limits:
# cpu: 100m
# memory: 128Mi
requests:
# cpu: 100m
memory: 2Gi
## Node labels for server pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Tolerations for server pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## Affinity for server pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
service:
type: ClusterIP
port: 80
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
path: /
hosts:
- chart-example.local
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
## Configuration for Redash ad-hoc workers
##
adhocWorker:
## Ad-hoc worker specific environment variables
## Add any environment variables from https://redash.io/help-onpremise/setup/settings-environment-variables.html
##
env:
QUEUES: "queries,celery"
WORKERS_COUNT: 2
replicaCount: 1
## Ad-hoc worker resource requests and limits
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources: {}
## Node labels for ad-hoc worker pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Tolerations for ad-hoc worker pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## Affinity for ad-hoc worker pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## Configuration for Redash scheduled workers
##
scheduledWorker:
## Scheduled worker specific environment variables
## Add any environment variables from https://redash.io/help-onpremise/setup/settings-environment-variables.html
##
env:
QUEUES: "scheduled_queries"
WORKERS_COUNT: 2
replicaCount: 1
## Scheduled worker resource requests and limits
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources: {}
## Node labels for scheduled worker pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Tolerations for scheduled worker pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## Affinity for scheduled worker pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
##
## 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.
##
# externalPostgreSQL: postgresql://user:pass@host:5432/database
## Configuration values for the postgresql dependency
## This PostgreSQL instance is used for all Redash state storage
## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
##
postgresql:
## 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:
## Bitnami supported version closest to the one specified in Redash docker-compose.yml
##
tag: "9.6.11-debian-9-r66"
postgresqlUsername: redash
## If the password is not specified, a random password will be generated
##
# postgresqlPassword:
postgresqlDatabase: redash
service:
type: ClusterIP
port: 5432
externalIPs: []
persistence:
enabled: true
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## 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: ""
accessMode: ReadWriteOnce
size: 10Gi
# existingClaim: ""
##
## 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.
##
# externalRedis: redis://user:pass@host:6379/database
## Configuration values for the redis dependency
## This Redis instance is used for caching and temporary storage
## ref: https://github.com/kubernetes/charts/blob/master/stable/redis/README.md
##
redis:
## 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
## If the password is not specified, a random password will be generated
##
# password:
databaseNumber: 0
master:
port: 6379
cluster:
enabled: false