Fix script, insrease timeout

pull/9/head
Eugene Ivantsov 2019-04-05 16:36:25 +03:00
parent ad6b2a3a21
commit b4b958e4e7
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ echo "Starting OKD 3.11"
cd /tmp
sudo rm -rf openshift.local.clusterup
./oc cluster up --public-hostname=172.17.0.1 --routing-suffix=172.17.0.1.nip.io
oc login -u system:admin
./oc login -u system:admin
./oc adm policy add-cluster-role-to-user cluster-admin developer
./oc login -u developer -p password
sleep 10

View File

@ -18,7 +18,7 @@ import (
func VerifyCheRunning(status string) (deployed bool, err error) {
timeout := time.After(6 * time.Minute)
timeout := time.After(15 * time.Minute)
tick := time.Tick(10 * time.Second)
for {
select {