Skip to content

Commit

Permalink
Increase deploy max_attempts timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
jgmize authored and pmac committed Jan 31, 2019
1 parent 1a453dc commit c5f92fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ DEPLOYMENT_VERSION=$(git rev-parse --short HEAD)
DEPLOYMENT_NAME=$(python3 -c "import yaml; print(yaml.load(open(\"$CLUSTER_NAME/$NAMESPACE/$DEPLOYMENT_YAML\"))['metadata']['name'])")
CHECK_URL=$DEPLOYMENT_LOG_BASE_URL/$NAMESPACE/$DEPLOYMENT_NAME/$DEPLOYMENT_VERSION
attempt_counter=0
max_attempts=120
max_attempts=180
set +x
until curl -sf $CHECK_URL; do
if [ ${attempt_counter} -eq ${max_attempts} ]; then
Expand Down

0 comments on commit c5f92fe

Please sign in to comment.