diff options
author | Rémy Coutable <remy@rymai.me> | 2019-01-10 12:36:06 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-01-10 12:36:06 +0000 |
commit | 2064565abc2f83d5ceea6e4a15fd3eeb09d4ca02 (patch) | |
tree | 86e8f8ea281cb96ca9a9302a636297df4c84f2de /scripts | |
parent | 877a0cc2077532864e967db5ebe181b3aab953eb (diff) | |
parent | ebf73a19ce08afda8357c0997401f2ca3e4c4dca (diff) | |
download | gitlab-ce-2064565abc2f83d5ceea6e4a15fd3eeb09d4ca02.tar.gz |
Merge branch '55323-review-apps-use-2-replicas-for-the-tiller-deploy-deployment' into 'master'
[Review Apps] Use 2 replicas for the `tiller-deploy` Deployment
Closes #55323
See merge request gitlab-org/gitlab-ce!23806
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/review_apps/review-apps.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh index 118a7c7f638..4e1dbff7b80 100755 --- a/scripts/review_apps/review-apps.sh +++ b/scripts/review_apps/review-apps.sh @@ -31,7 +31,9 @@ function ensure_namespace() { function install_tiller() { echo "Checking Tiller..." - helm init --upgrade + helm init \ + --upgrade \ + --replicas 2 kubectl rollout status -n "$TILLER_NAMESPACE" -w "deployment/tiller-deploy" if ! helm version --debug; then echo "Failed to init Tiller." |