Skip to content

Commit

Permalink
Merge pull request #2353 from Jonomir/master
Browse files Browse the repository at this point in the history
helm chart respect registry value if not equal to txt
  • Loading branch information
k8s-ci-robot authored Oct 6, 2021
2 parents c050cbd + 3c39ea2 commit 938ca77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/external-dns/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: external-dns
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
type: application
version: 1.3.1
version: 1.3.2
appVersion: 0.10.0
keywords:
- kubernetes
Expand Down
2 changes: 1 addition & 1 deletion charts/external-dns/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ spec:
- --source={{ . }}
{{- end }}
- --policy={{ .Values.policy }}
- --registry={{ .Values.registry }}
{{- if eq .Values.registry "txt" }}
{{- if .Values.txtOwnerId }}
- --txt-owner-id={{ .Values.txtOwnerId }}
{{- end }}
- --registry={{ .Values.registry }}
{{- if .Values.txtPrefix }}
- --txt-prefix={{ .Values.txtPrefix }}
{{- end }}
Expand Down

0 comments on commit 938ca77

Please sign in to comment.