Increase CHE boot timeout in deploy_che.sh (#8605)

6.19.x
Roman Iuvshyn 2018-02-05 13:44:30 +02:00 committed by GitHub
parent 56076f69e4
commit 531cbb0ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ wait_until_che_is_available() {
available=$(oc get dc che -o json | jq '.status.conditions[] | select(.type == "Available") | .status')
progressing=$(oc get dc che -o json | jq '.status.conditions[] | select(.type == "Progressing") | .status')
DEPLOYMENT_TIMEOUT_SEC=120
DEPLOYMENT_TIMEOUT_SEC=300
POLLING_INTERVAL_SEC=5
end=$((SECONDS+DEPLOYMENT_TIMEOUT_SEC))
while [ "${available}" != "\"True\"" ] && [ ${SECONDS} -lt ${end} ]; do