Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-11-27 00:06:38 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-11-27 00:06:38 +0300
commit59a349817c0869e8e0d750884b34256ca4faefca (patch)
treeabb8297dd313e550184f1933a9dc7795a3749c0a /scripts
parent581c10e344d85729e77fce78513819d159289dc5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/review_apps/review-apps.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh
index 79f44e1c5d0..1d87b64168c 100755
--- a/scripts/review_apps/review-apps.sh
+++ b/scripts/review_apps/review-apps.sh
@@ -169,10 +169,12 @@ function install_external_dns() {
helm repo update --tiller-namespace "${namespace}"
# Default requested: CPU => 0, memory => 0
+ # Chart > 2.6.1 has a problem with AWS so we're pinning it for now.
+ # See https://gitlab.com/gitlab-org/gitlab/issues/37269 and https://github.com/kubernetes-sigs/external-dns/issues/1262
helm install stable/external-dns \
--tiller-namespace "${namespace}" \
--namespace "${namespace}" \
- --version '^2.2.1' \
+ --version '2.6.1' \
--name "${release}" \
--set provider="aws" \
--set aws.credentials.secretKey="${REVIEW_APPS_AWS_SECRET_KEY}" \