summaryrefslogtreecommitdiffstats
path: root/src/vagrant/kubeadm_istio/istio/deploy.sh
diff options
context:
space:
mode:
authorQiLiang <liangqi1@huawei.com>2018-03-20 17:33:01 +0800
committerQiLiang <liangqi1@huawei.com>2018-03-20 17:35:44 +0800
commit37e8c639239ca83e11c5f378b501adb9e673fcc3 (patch)
tree2247763e2c5fea5da947b2884b0a9dc7d74ed7ae /src/vagrant/kubeadm_istio/istio/deploy.sh
parent63a58db0eed6119ebceaeb74a5bd552a00c742c6 (diff)
Tiny fix for istio scenario
- disable user interactive when clean_bookinfo - run sleep before status check to save ci varify time Change-Id: I6072b85c3c941af30263101a3d4dca0537abf1fc Signed-off-by: QiLiang <liangqi1@huawei.com>
Diffstat (limited to 'src/vagrant/kubeadm_istio/istio/deploy.sh')
-rwxr-xr-xsrc/vagrant/kubeadm_istio/istio/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vagrant/kubeadm_istio/istio/deploy.sh b/src/vagrant/kubeadm_istio/istio/deploy.sh
index 3dd1426..4abc856 100755
--- a/src/vagrant/kubeadm_istio/istio/deploy.sh
+++ b/src/vagrant/kubeadm_istio/istio/deploy.sh
@@ -59,8 +59,8 @@ kubectl get namespace -L istio-injection
r="1"
while [ $r -ne "0" ]
do
+ sleep 30
kubectl get pods -n istio-system
r=$(kubectl get pods -n istio-system | egrep -v 'NAME|Running' | wc -l)
- sleep 60
done