fix(dnsPolicy): fix lists where was initialized as empty always (#203)

This commit is contained in:
Stavros Kois
2022-08-12 10:29:36 +03:00
committed by GitHub
parent 5efbb35478
commit d44edd597d
2 changed files with 3 additions and 3 deletions

View File

@@ -15,4 +15,4 @@ maintainers:
name: common
sources: null
type: library
version: 10.4.11
version: 10.4.12

View File

@@ -37,11 +37,11 @@ dnsConfig:
{{ tpl ( toYaml . ) $ | nindent 4 }}
{{- end }}
{{- with .Values.dnsConfig.nameservers }}
nameservers: []
nameservers:
{{ tpl ( toYaml . ) $ | nindent 4 }}
{{- end }}
{{- with .Values.dnsConfig.searches }}
searches: []
searches:
{{ tpl ( toYaml . ) $ | nindent 4 }}
{{- end }}
{{- end }}