From 498b2aa25d44478c41fc96d992a20420da7f0c1b Mon Sep 17 00:00:00 2001 From: Steve Hipwell Date: Wed, 26 Apr 2023 16:36:45 +0100 Subject: [PATCH] chore(chart): Reverted chart changes to args Signed-off-by: Steve Hipwell --- charts/external-dns/README.md | 1 - charts/external-dns/templates/deployment.yaml | 3 --- charts/external-dns/values.yaml | 2 -- 3 files changed, 6 deletions(-) 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