From d8bce98fd011a4fc3eb640fd4251f922a696fbc6 Mon Sep 17 00:00:00 2001 From: PeteE Date: Sun, 4 Nov 2018 15:20:15 -0600 Subject: [PATCH] set AWS_DEFAULT_REGION for aws-sd provider (#8992) * set AWS_REGION for aws-sd provider Signed-off-by: Pete Erickson * set AWS_REGION for aws-sd provider Signed-off-by: Pete Erickson --- stable/external-dns/Chart.yaml | 2 +- stable/external-dns/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 stable/external-dns/templates/deployment.yaml diff --git a/stable/external-dns/Chart.yaml b/stable/external-dns/Chart.yaml index 6743bf53f9..bcc43c0034 100644 --- a/stable/external-dns/Chart.yaml +++ b/stable/external-dns/Chart.yaml @@ -3,7 +3,7 @@ description: Configure external DNS servers (AWS Route53, Google CloudDNS and others) for Kubernetes Ingresses and Services name: external-dns -version: 1.0.1 +version: 1.0.2 appVersion: 0.5.7 home: https://github.com/kubernetes-incubator/external-dns sources: diff --git a/stable/external-dns/templates/deployment.yaml b/stable/external-dns/templates/deployment.yaml old mode 100644 new mode 100755 index 5b02dd9af3..a505b54cad --- a/stable/external-dns/templates/deployment.yaml +++ b/stable/external-dns/templates/deployment.yaml @@ -91,7 +91,7 @@ spec: - name: GOOGLE_APPLICATION_CREDENTIALS value: /etc/secrets/service-account/credentials.json {{- end }} - {{- if eq .Values.provider "aws" }} + {{- if or (eq .Values.provider "aws") (eq .Values.provider "aws-sd") }} {{- if .Values.aws.region }} - name: AWS_DEFAULT_REGION value: {{ .Values.aws.region }}