From d59ddcdd5edd707539e228b3dc065b8740564a0d Mon Sep 17 00:00:00 2001 From: Joe Hohertz Date: Fri, 5 Jul 2019 05:54:35 -0400 Subject: [PATCH] Values.extraArgs were being inserted in two places, resulting in duplication. Remove one. (#15257) Signed-off-by: Joe Hohertz --- stable/external-dns/Chart.yaml | 2 +- stable/external-dns/templates/deployment.yaml | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/stable/external-dns/Chart.yaml b/stable/external-dns/Chart.yaml index d35ae0b51a..3c128cbcca 100644 --- a/stable/external-dns/Chart.yaml +++ b/stable/external-dns/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: external-dns -version: 2.0.2 +version: 2.0.3 appVersion: 0.5.15 description: ExternalDNS is a Kubernetes addon that configures public DNS servers with information about exposed Kubernetes services to make them discoverable. keywords: diff --git a/stable/external-dns/templates/deployment.yaml b/stable/external-dns/templates/deployment.yaml index ff2324c340..71c7b1dda4 100755 --- a/stable/external-dns/templates/deployment.yaml +++ b/stable/external-dns/templates/deployment.yaml @@ -87,13 +87,6 @@ spec: - --crd-source-kind={{ .Values.crd.kind }} {{- end }} {{- end }} - {{- range $key, $value := .Values.extraArgs }} - {{- if $value }} - - --{{ $key }}={{ $value }} - {{- else }} - - --{{ $key }} - {{- end }} - {{- end }} {{- range .Values.istioIngressGateways }} - --istio-ingress-gateway={{ . }} {{- end }}