Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
1d57f8e524
commit
1435c744ce
|
@ -1,4 +0,0 @@
|
|||
|
||||
|
||||
## [external-dns-1.0.3](https://github.com/truecharts/charts/compare/external-dns-1.0.2...external-dns-1.0.3) (2023-11-08)
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [external-dns-1.0.4](https://github.com/truecharts/charts/compare/external-dns-1.0.3...external-dns-1.0.4) (2023-11-09)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix zoneidfilters ([#14496](https://github.com/truecharts/charts/issues/14496))
|
||||
|
||||
|
||||
|
||||
|
||||
## [external-dns-1.0.3](https://github.com/truecharts/charts/compare/external-dns-1.0.2...external-dns-1.0.3) (2023-11-08)
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/enterprise/external-dns
|
||||
- https://github.com/kubernetes-sigs/external-dns
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
annotations:
|
||||
truecharts.org/category: networking
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [external-dns-1.0.4](https://github.com/truecharts/charts/compare/external-dns-1.0.3...external-dns-1.0.4) (2023-11-09)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix zoneidfilters ([#14496](https://github.com/truecharts/charts/issues/14496))
|
||||
|
||||
|
|
@ -3,7 +3,7 @@ args:
|
|||
{{- with .Values.externaldns.provider }}
|
||||
- --provider={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.zoneidFilters }}
|
||||
{{- range .Values.externaldns.zoneidFilters }}
|
||||
- --zone-id-filter={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.cloudflareProxied }}
|
||||
|
@ -36,11 +36,9 @@ args:
|
|||
{{- if .Values.externaldns.namespaced }}
|
||||
- --namespace={{ include "tc.v1.common.lib.metadata.namespace" (dict "caller" "External-DNS" "rootCtx" $ "objectData" .Values) }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.domainFilter }}
|
||||
{{- range . -}}
|
||||
{{- range .Values.externaldns.domainFilters }}
|
||||
- --domain-filter={{ . }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.piholeServer }}
|
||||
- --pihole-server={{ . }}
|
||||
{{- end -}}
|
Loading…
Reference in New Issue