Skip to content

Commit 2a8a8de

Browse files
committed
Fix image pull secret
1 parent 2dceeb8 commit 2a8a8de

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

charts/tidepool/charts/auth/templates/1-deployment-private.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ spec:
217217
{{- toYaml .Values.resources | nindent 10 }}
218218
{{ if .Values.deployment.imagePullSecretName }}
219219
imagePullSecrets:
220-
name: {{- .Values.deployment.imagePullSecretName }}
220+
- name: {{- .Values.deployment.imagePullSecretName | quote }}
221221
{{- end }}
222222
securityContext:
223223
{{- toYaml .Values.securityContext | nindent 8 }}

charts/tidepool/charts/auth/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ deployment:
1818
# -- auth Docker image
1919
imagePrivate: tidepool/platform-private-auth:master-latest
2020
# -- The name of the docker secret used for pulling the private images
21-
imagePullSecretName: null
21+
imagePullSecretName:
2222
# -- number of replicas to deploy
2323
replicas: 1
2424
initContainers: []

charts/tidepool/charts/data/templates/1-deployment-private.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
{{- toYaml .Values.resources | nindent 10 }}
6868
{{ if .Values.deployment.imagePullSecretName }}
6969
imagePullSecrets:
70-
name: {{- .Values.deployment.imagePullSecretName }}
70+
- name: {{- .Values.deployment.imagePullSecretName | quote }}
7171
{{- end }}
7272
securityContext:
7373
{{- toYaml .Values.securityContext | nindent 8 }}

charts/tidepool/charts/data/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ deployment:
99
# -- Docker image
1010
imagePrivate: tidepool/platform-private-data:master-latest
1111
# -- The name of the docker secret used for pulling the private images
12-
imagePullSecretName: null
12+
imagePullSecretName:
1313
replicas: 1
1414

1515
# -- memory and cpu resources for pods

0 commit comments

Comments
 (0)