We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cc457f commit 3ebeab7Copy full SHA for 3ebeab7
chart/templates/deployment.yaml
@@ -27,6 +27,10 @@ spec:
27
{{- toYaml . | nindent 8 }}
28
{{- end }}
29
spec:
30
+ {{- if .Values.imagePullSecrets }}
31
+ imagePullSecrets:
32
+ {{- toYaml .Values.imagePullSecrets | nindent 8 }}
33
+ {{- end }}
34
initContainers:
35
- name: wait-for-db
36
image: "{{ .Values.initImage.repository }}:{{ .Values.initImage.tag }}"
chart/values.yaml
@@ -8,6 +8,8 @@ image:
8
tag: 1.18.7
9
pullPolicy: IfNotPresent
10
11
+imagePullSecrets: []
12
+
13
# This image should contain `nc` and a shell of some kind to do a simple loop.
14
initImage:
15
repository: busybox
0 commit comments