File tree 5 files changed +7
-11
lines changed
5 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : coredns
3
- version : 1.39.0
3
+ version : 1.39.1
4
4
appVersion : 1.12.0
5
5
home : https://coredns.io
6
6
icon : https://coredns.io/images/CoreDNS_Colour_Horizontal.png
@@ -19,5 +19,5 @@ maintainers:
19
19
type : application
20
20
annotations :
21
21
artifacthub.io/changes : |
22
- - kind: changed
23
- description: Upgrade to CoreDNS 1.12.0
22
+ - kind: fixed
23
+ description: align imagePullSecrets in Deployment and ServiceAccount
Original file line number Diff line number Diff line change 60
60
nodeSelector :
61
61
{{ toYaml .Values.autoscaler.nodeSelector | indent 8 }}
62
62
{{- end }}
63
- {{- if not (empty .Values.autoscaler.image.pullSecrets) }}
63
+ {{- if .Values.autoscaler.image.pullSecrets }}
64
64
imagePullSecrets :
65
65
{{ toYaml .Values.autoscaler.image.pullSecrets | indent 8 }}
66
66
{{- end }}
Original file line number Diff line number Diff line change 88
88
nodeSelector :
89
89
{{ toYaml .Values.nodeSelector | indent 8 }}
90
90
{{- end }}
91
- {{- if not (empty .Values.image.pullSecrets) }}
91
+ {{- if .Values.image.pullSecrets }}
92
92
imagePullSecrets :
93
93
{{ toYaml .Values.image.pullSecrets | indent 8 }}
94
94
{{- end }}
Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ metadata:
15
15
{{- end }}
16
16
{{- if .Values.autoscaler.image.pullSecrets }}
17
17
imagePullSecrets :
18
- {{- range .Values.autoscaler.image.pullSecrets }}
19
- - name : {{ . }}
20
- {{- end }}
18
+ {{ toYaml .Values.autoscaler.image.pullSecrets | indent 2 }}
21
19
{{- end }}
22
20
{{- end }}
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ metadata:
16
16
{{- end }}
17
17
{{- if .Values.image.pullSecrets }}
18
18
imagePullSecrets :
19
- {{- range .Values.image.pullSecrets }}
20
- - name : {{ . }}
21
- {{- end }}
19
+ {{ toYaml .Values.image.pullSecrets | indent 2 }}
22
20
{{- end }}
23
21
{{- end }}
You can’t perform that action at this time.
0 commit comments