You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/redash/README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ This chart bootstraps a [Redash](https://github.com/getredash/redash) deployment
8
8
9
9
This is a contributed project developed by volunteers and not officially supported by Redash.
10
10
11
-
Current chart version is `3.1.0-alpha1`
11
+
Current chart version is `3.1.0-alpha2`
12
12
13
13
*<https://github.com/getredash/redash>
14
14
@@ -104,6 +104,8 @@ The following table lists the configurable parameters of the Redash chart and th
104
104
| migrations.securityContext | object |`{}`||
105
105
| migrations.tolerations | list |`[]`| Tolerations for server pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)|
106
106
| migrations.ttlSecondsAfterFinished | int |`600`| ttl for install job [ref](https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/)|
107
+
| migrations.volumeMounts | list |`[]`| volume mounts for migrations pods |
108
+
| migrations.volumes | list |`[]`| volumes that will be mounted to migrations pods only |
| scheduler.livenessProbe | object |`{}`| Liveness probe for scheduler to ensure workers are running fine |
204
207
| scheduler.nodeSelector | object |`{}`| Node labels for scheduler pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)|
205
208
| scheduler.podAnnotations | object |`{}`| Annotations for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)|
206
209
| scheduler.podLabels | object |`{}`| Labels for scheduler pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)|
@@ -213,10 +216,12 @@ The following table lists the configurable parameters of the Redash chart and th
213
216
| server.affinity | object |`{}`| Affinity for server pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)|
214
217
| server.env | object |`{}`| Redash server specific environment variables Don't use this for variables that are in the configuration above, however. |
215
218
| server.httpPort | int |`5000`| Server container port (only useful if you are using a customized image) |
219
+
| server.livenessProbe | object |`{"failureThreshold":10,"initialDelaySeconds":90,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}`| Server liveness probe configuration |
216
220
| server.nodeSelector | object |`{}`| Node labels for server pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)|
217
221
| server.podAnnotations | object |`{}`| Annotations for server pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)|
218
222
| server.podLabels | object |`{}`| Labels for server pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)|
219
223
| server.podSecurityContext | object |`{}`| Security contexts for server pod assignment [ref](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)|
224
+
| server.readinessProbe | object |`{"failureThreshold":3,"initialDelaySeconds":10,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}`| Server readiness probe configuration |
220
225
| server.replicaCount | int |`1`| Number of server pods to run |
221
226
| server.resources | object |`{}`| Server resource requests and limits [ref](http://kubernetes.io/docs/user-guide/compute-resources/)|
222
227
| server.securityContext | object |`{}`||
@@ -231,8 +236,10 @@ The following table lists the configurable parameters of the Redash chart and th
231
236
| serviceAccount.annotations | object |`{}`| Annotations to add to the service account |
232
237
| serviceAccount.create | bool |`true`| Specifies whether a service account should be created |
233
238
| serviceAccount.name | string |`nil`| The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
239
+
| volumeMounts | list |`[]`| Redash global volume mounts configuration - applied to all containers |
240
+
| volumes | list |`[]`| Redash global volumes configuration - applied to all containers |
234
241
| worker.affinity | object |`{}`| Default affinity for worker pod assignment [ref](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity)|
235
-
| worker.livenessProbe |string|`nil`| Default worker's liveness probe to ensure workers are running fine |
242
+
| worker.livenessProbe |object|`{}`| Default worker's liveness probe to ensure workers are running fine |
236
243
| worker.nodeSelector | object |`{}`| Default node labels for worker pod assignment [ref](https://kubernetes.io/docs/user-guide/node-selection/)|
237
244
| worker.podAnnotations | object |`{}`| Default annotations for worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/)|
238
245
| worker.podLabels | object |`{}`| Default labels for worker pod assignment [ref](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)|
Copy file name to clipboardExpand all lines: charts/redash/templates/secrets.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ metadata:
8
8
type: Opaque
9
9
data:
10
10
## Start primary Redash configuration
11
-
{{ $null := required "A value for one of the following variables is required: redash.secretKey (secure random value), redash.existingSecret (secret name)" (or .Values.redash.secretKey .Values.redash.existingSecret) }}
11
+
{{- $null := required "A value for one of the following variables is required: redash.secretKey (secure random value), redash.existingSecret (secret name)" (or .Values.redash.secretKey .Values.redash.existingSecret) }}
{{ $null := required "A value for one of the following variables is required: redash.cookieSecret (secure random value), redash.existingSecret (secret name)" (or .Values.redash.cookieSecret .Values.redash.existingSecret) }}
15
+
{{- $null := required "A value for one of the following variables is required: redash.cookieSecret (secure random value), redash.existingSecret (secret name)" (or .Values.redash.cookieSecret .Values.redash.existingSecret) }}
0 commit comments