Browse Source
Merge pull request #6601 from panos--/chart-imagepullsecrets
Helm chart: allow specifying image pull secrets
pull/6804/head
Rory Powell
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
22 additions and
2 deletions
-
charts/budibase/templates/app-service-deployment.yaml
-
charts/budibase/templates/minio-service-deployment.yaml
-
charts/budibase/templates/proxy-service-deployment.yaml
-
charts/budibase/templates/redis-service-deployment.yaml
-
charts/budibase/templates/worker-service-deployment.yaml
|
|
|
@ -151,6 +151,10 @@ spec: |
|
|
|
tolerations: |
|
|
|
{{- toYaml . | nindent 8 }} |
|
|
|
{{- end }} |
|
|
|
{{ if .Values.imagePullSecrets }} |
|
|
|
imagePullSecrets: |
|
|
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }} |
|
|
|
{{ end }} |
|
|
|
restartPolicy: Always |
|
|
|
serviceAccountName: "" |
|
|
|
status: {} |
|
|
|
|
|
|
|
@ -68,6 +68,10 @@ spec: |
|
|
|
tolerations: |
|
|
|
{{- toYaml . | nindent 8 }} |
|
|
|
{{- end }} |
|
|
|
{{ if .Values.imagePullSecrets }} |
|
|
|
imagePullSecrets: |
|
|
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }} |
|
|
|
{{ end }} |
|
|
|
restartPolicy: Always |
|
|
|
serviceAccountName: "" |
|
|
|
volumes: |
|
|
|
@ -75,4 +79,4 @@ spec: |
|
|
|
persistentVolumeClaim: |
|
|
|
claimName: minio-data |
|
|
|
status: {} |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
|
|
|
|
|
@ -40,6 +40,10 @@ spec: |
|
|
|
tolerations: |
|
|
|
{{- toYaml . | nindent 8 }} |
|
|
|
{{- end }} |
|
|
|
{{ if .Values.imagePullSecrets }} |
|
|
|
imagePullSecrets: |
|
|
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }} |
|
|
|
{{ end }} |
|
|
|
restartPolicy: Always |
|
|
|
serviceAccountName: "" |
|
|
|
volumes: |
|
|
|
|
|
|
|
@ -47,6 +47,10 @@ spec: |
|
|
|
tolerations: |
|
|
|
{{- toYaml . | nindent 8 }} |
|
|
|
{{- end }} |
|
|
|
{{ if .Values.imagePullSecrets }} |
|
|
|
imagePullSecrets: |
|
|
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }} |
|
|
|
{{ end }} |
|
|
|
restartPolicy: Always |
|
|
|
serviceAccountName: "" |
|
|
|
volumes: |
|
|
|
@ -54,4 +58,4 @@ spec: |
|
|
|
persistentVolumeClaim: |
|
|
|
claimName: redis-data |
|
|
|
status: {} |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
|
|
|
|
|
@ -145,6 +145,10 @@ spec: |
|
|
|
tolerations: |
|
|
|
{{- toYaml . | nindent 8 }} |
|
|
|
{{- end }} |
|
|
|
{{ if .Values.imagePullSecrets }} |
|
|
|
imagePullSecrets: |
|
|
|
{{- toYaml .Values.imagePullSecrets | nindent 6 }} |
|
|
|
{{ end }} |
|
|
|
restartPolicy: Always |
|
|
|
serviceAccountName: "" |
|
|
|
status: {} |
|
|
|
|