diff --git a/charts/external-dns/templates/deployment.yaml b/charts/external-dns/templates/deployment.yaml index 5c3e1128ff..a175dbf643 100644 --- a/charts/external-dns/templates/deployment.yaml +++ b/charts/external-dns/templates/deployment.yaml @@ -78,7 +78,6 @@ spec: {{- end }} - --policy={{ .Values.policy }} - --registry={{ .Values.registry }} - {{- if eq .Values.registry "txt" }} {{- if .Values.txtOwnerId }} - --txt-owner-id={{ .Values.txtOwnerId }} {{- end }} @@ -88,7 +87,6 @@ spec: {{- if and (eq .Values.txtPrefix "") (ne .Values.txtSuffix "") }} - --txt-suffix={{ .Values.txtSuffix }} {{- end }} - {{- end }} {{- if .Values.namespaced }} - --namespace={{ .Release.Namespace }} {{- end }} diff --git a/charts/external-dns/values.yaml b/charts/external-dns/values.yaml index fe0f0dd4cb..5a2d22d9b2 100644 --- a/charts/external-dns/values.yaml +++ b/charts/external-dns/values.yaml @@ -162,9 +162,15 @@ sources: policy: upsert-only +# Specifies the registry for storing ownership and labels. +# Valid values are "aws-sd", "noop", "dynamodb", and "txt". registry: txt +# When using a registry other than "noop", specifies a name that +# uniquely identifies this instance of external-dns. txtOwnerId: "" +# Specifies a prefix for the domain names of TXT records created by the "txt" registry. Optional. Mutually exclusive with `txtSuffix`. txtPrefix: "" +# Specifies a suffix for the domain names of TXT records created by the "txt" registry. Optional. Mutually exclusive with `txtPrefix`. txtSuffix: "" domainFilters: []