From b4b958e4e77081694baeefec0ebd1018e202b56d Mon Sep 17 00:00:00 2001 From: Eugene Ivantsov Date: Fri, 5 Apr 2019 16:36:25 +0300 Subject: [PATCH] Fix script, insrease timeout --- e2e/run-okd-tests.sh | 2 +- e2e/watch.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/run-okd-tests.sh b/e2e/run-okd-tests.sh index 3b2897e8e..57560ba51 100755 --- a/e2e/run-okd-tests.sh +++ b/e2e/run-okd-tests.sh @@ -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 diff --git a/e2e/watch.go b/e2e/watch.go index 7c3e29dca..219f76043 100644 --- a/e2e/watch.go +++ b/e2e/watch.go @@ -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 {