external-dns: bump to v0.7.6, helm chart v6.8.1

This commit is contained in:
ace
2022-08-29 03:02:03 +03:00
parent 9b7fdc9851
commit e65899ebde
47 changed files with 5743 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Renders a value that contains template.
Usage:
{{ include "common.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $) }}
*/}}
{{- define "common.tplvalues.render" -}}
{{- if typeIs "string" .value }}
{{- tpl .value .context }}
{{- else }}
{{- tpl (.value | toYaml) .context }}
{{- end }}
{{- end -}}