diff options
author | Rémy Coutable <remy@rymai.me> | 2018-12-13 16:45:44 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-12-19 11:23:43 +0100 |
commit | ebf73a19ce08afda8357c0997401f2ca3e4c4dca (patch) | |
tree | be95d023296be95d504aa0d24470164d40428c56 /scripts | |
parent | ffef28ccd6d37ade2c3ee3ca46679749f9cf09aa (diff) | |
download | gitlab-ce-ebf73a19ce08afda8357c0997401f2ca3e4c4dca.tar.gz |
Use 2 replicas for the Deployment55323-review-apps-use-2-replicas-for-the-tiller-deploy-deployment
Signed-off-by: Rémy Coutable <remy@rymai.me>
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 9e52366f800..1ee6f502b8e 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." |