diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2017-11-09 12:35:02 -0500 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2017-11-09 13:45:56 -0500 |
commit | d8f85fabb2be5fea3630821bc8a9f186781ce2b9 (patch) | |
tree | 545126b15ba3710f204db526a09fe5cb378f971a /ci | |
parent | 5f41686bc6a09307e346bbbf980ab45df7ac9ced (diff) |
fix container4nfv jenkins job hung issue
1. fix cleanup: poweroff/delete all vms
2. add timeout for kubeadm init/join hung:
https://github.com/kubernetes/kubernetes/issues/43800
3. try to fix kubeadm init/join hung
Change-Id: I133d5aafee0455848909484efee5548b2015473d
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/cleanup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/cleanup.sh b/ci/cleanup.sh index ee5c428..afe4ac0 100755 --- a/ci/cleanup.sh +++ b/ci/cleanup.sh @@ -17,7 +17,7 @@ set -x -VBoxManage list vms | cut -f2 -d'"' | xargs -I {} VBoxManage unregistervm {} --delete VBoxManage list vms | cut -f2 -d'"' | xargs -I {} VBoxManage controlvm {} poweroff +VBoxManage list vms | cut -f2 -d'"' | xargs -I {} VBoxManage unregistervm {} --delete VBoxManage list hostonlyifs | grep "^Name:.*vboxnet" |\ sed "s/^Name:.*vboxnet/vboxnet/" | xargs -I {} VBoxManage hostonlyif remove {} |