diff --git a/charts/external-dns/README.md b/charts/external-dns/README.md index a0e543ed4a..e3433227be 100644 --- a/charts/external-dns/README.md +++ b/charts/external-dns/README.md @@ -83,7 +83,6 @@ The following table lists the configurable parameters of the _ExternalDNS_ chart | `secretConfiguration.mountPath` | Mount path of secret configuration secret (this can be templated). | `""` | | `secretConfiguration.data` | Secret configuration secret data. Could be used to store DNS provider credentials. | `{}` | | `secretConfiguration.subPath` | Sub-path of secret configuration secret (this can be templated). | `""` | -| `resolveServiceLoadBalancerHostname` | Resolve the hostname of LoadBalancer-type Service object to IP addresses in order to create DNS A/AAAA records instead of CNAMEs | `false` | ## Namespaced scoped installation diff --git a/charts/external-dns/templates/deployment.yaml b/charts/external-dns/templates/deployment.yaml index a2f0b74f99..5c3e1128ff 100644 --- a/charts/external-dns/templates/deployment.yaml +++ b/charts/external-dns/templates/deployment.yaml @@ -96,9 +96,6 @@ spec: - --domain-filter={{ . }} {{- end }} - --provider={{ tpl .Values.provider $ }} - {{- if .Values.resolveServiceLoadBalancerHostname }} - - --resolve-service-load-balancer-hostname - {{- end }} {{- range .Values.extraArgs }} - {{ tpl . $ }} {{- end }} diff --git a/charts/external-dns/values.yaml b/charts/external-dns/values.yaml index 1084cd2acb..6e0f80265a 100644 --- a/charts/external-dns/values.yaml +++ b/charts/external-dns/values.yaml @@ -15,8 +15,6 @@ fullnameOverride: "" commonLabels: {} -resolveServiceLoadBalancerHostname: false - serviceAccount: # Specifies whether a service account should be created create: true