File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
18
19
19
## [ UNRELEASED]
20
20
21
+ ### Fixed
22
+
23
+ - Fixed handling of non-string types in ` serviceAccount.metadata.annotations ` field. ([ #5067 ] ( https://github.com/kubernetes-sigs/external-dns/pull/5067 ) ) _ @hjoshi123_
24
+
21
25
## [ v1.15.1] - 2023-09-10
22
26
23
27
### Added
Original file line number Diff line number Diff line change @@ -40,3 +40,5 @@ serviceAccount:
40
40
notTemplated/version : " v1.2.3"
41
41
justValueTemplated/version : " {{ .Chart.Version }}"
42
42
" {{ .Chart.Name }}/chart " : " {{ .Chart.Version }}"
43
+ booleanVersion : " true"
44
+ number : " 1"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ metadata:
12
12
{{- with .Values.serviceAccount.annotations }}
13
13
annotations :
14
14
{{- range $k, $v := . }}
15
- {{- printf "%s: %s" (tpl $k $) ( tpl $v $) | nindent 4 }}
15
+ {{- printf "%s: %s" (toYaml ( tpl $k $)) (toYaml ( tpl $v $) ) | nindent 4 }}
16
16
{{- end }}
17
17
{{- end }}
18
18
automountServiceAccountToken : {{ .Values.serviceAccount.automountServiceAccountToken }}
You can’t perform that action at this time.
0 commit comments