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:
authorRémy Coutable <remy@rymai.me>2018-12-13 18:45:44 +0300
committerRémy Coutable <remy@rymai.me>2018-12-19 13:23:43 +0300
commitebf73a19ce08afda8357c0997401f2ca3e4c4dca (patch)
treebe95d023296be95d504aa0d24470164d40428c56 /scripts
parentffef28ccd6d37ade2c3ee3ca46679749f9cf09aa (diff)
Use 2 replicas for the Deployment
Signed-off-by: Rémy Coutable <remy@rymai.me>
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 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."