File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ roleRef:
38
38
39
39
apiVersion : v1
40
40
kind : ServiceAccount
41
- {{- if .Values.global.imagePullSecrets }}
41
+ {{- if or .Values.global.imagePullSecrets .Values.serviceAccount .imagePullSecrets }}
42
42
imagePullSecrets :
43
- {{- range .Values.global.imagePullSecrets }}
43
+ {{- range (default .Values.global.imagePullSecrets .Values.serviceAccount.imagePullSecrets) }}
44
44
- name : {{ . }}
45
45
{{- end }}
46
46
{{- end }}
Original file line number Diff line number Diff line change 1
1
replicas : 3
2
2
maxUnavailableReplicas :
3
3
4
+ global :
5
+ # Lists the secrets you need to use to pull zookeeper image from a private registry.
6
+ imagePullSecrets : []
7
+ # - private-registry-key
8
+
4
9
image :
5
10
repository : pravega/zookeeper
6
11
tag : 0.2.15
7
12
pullPolicy : IfNotPresent
8
13
9
14
triggerRollingRestart : false
10
15
11
- global :
12
- # Lists the secrets you need to use to pull zookeeper image from a private registry.
13
- imagePullSecrets : []
14
- # - private-registry-key
15
-
16
16
domainName :
17
17
labels : {}
18
18
ports : []
You can’t perform that action at this time.
0 commit comments