Skip to content

Commit

Permalink
use latest stable version and added extra containers
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk committed Mar 27, 2024
1 parent 51b6e97 commit c071d7a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: redash
version: 3.0.1
appVersion: 10.0.0.b50633
appVersion: 10.1.0.b50633
description: Redash is an open source tool built for teams to query, visualize and collaborate.
keywords:
- redash
Expand Down
3 changes: 3 additions & 0 deletions templates/scheduler-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ spec:
securityContext:
{{- toYaml .Values.scheduler.podSecurityContext | nindent 8 }}
containers:
{{- with .Values.scheduler.extraContainers -}}
{{- toYaml . | nindent 8 }}
{{- end }}
- name: {{ include "redash.name" . }}-scheduler
securityContext:
{{- toYaml .Values.scheduler.securityContext | nindent 12 }}
Expand Down
3 changes: 3 additions & 0 deletions templates/server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ spec:
securityContext:
{{- toYaml .Values.server.podSecurityContext | nindent 8 }}
containers:
{{- with .Values.server.extraContainers -}}
{{- toYaml . | nindent 8 }}
{{- end }}
- name: {{ include "redash.name" . }}-server
securityContext:
{{- toYaml .Values.server.securityContext | nindent 12 }}
Expand Down
3 changes: 3 additions & 0 deletions templates/worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ spec:
securityContext:
{{- toYaml $workerConfig.podSecurityContext | nindent 8 }}
containers:
{{- with $workerConfig.extraContainers -}}
{{- toYaml . | nindent 8 }}
{{- end }}
- name: {{ include "redash.name" $context }}-{{ $workerName }}worker
securityContext:
{{- toYaml $workerConfig.securityContext | nindent 12 }}
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image:
# image.repo -- Redash image name used for server and worker pods
repo: redash/redash
# image.tag -- Redash image [tag](https://hub.docker.com/r/redash/redash/tags)
tag: 10.0.0.b50363
tag: 10.1.0.b50363
# image.pullPolicy - Image pull policy
pullPolicy: IfNotPresent

Expand Down

0 comments on commit c071d7a

Please sign in to comment.