diff options
Diffstat (limited to 'src/vagrant/kubeadm_ovsdpdk/examples')
-rwxr-xr-x | src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.sh b/src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.sh index 0cd9d0e..c208300 100755 --- a/src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.sh +++ b/src/vagrant/kubeadm_ovsdpdk/examples/virtio-user.sh @@ -23,7 +23,7 @@ r="0" while [ $r -ne "6" ] do r=$(kubectl get pods --all-namespaces | grep ovsdpdk | grep Run | wc -l) - sleep 20 + sleep 60 done kubectl delete rc --all @@ -32,8 +32,8 @@ r="0" while [ $r -ne "2" ] do r=$(kubectl get pods | grep Running | wc -l) - sleep 20 + sleep 60 done kubectl get pods --all-namespaces -sleep 20 -ping -c4 10.244.0.103 || ping -c4 10.244.0.104 +sleep 60 +kubectl get pods -o wide | awk 'NF>1 && NR>1 {print $1}' | xargs -I {} kubectl exec -i {} vppctl ping 10.244.0.10 |