diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-06-10 07:54:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-06-10 07:54:09 +0000 |
commit | 54ee9047e99b3e26358ed431131a578762c19cc8 (patch) | |
tree | c5c8fac6d7f5b9f1dbfa7b0f74fe3396eec7604b | |
parent | 5c8d3206fd8fcfda8bb275b551e349ce59ecc10c (diff) | |
parent | ee251c35e398ddd98ded1e0102c44de09f55bf30 (diff) |
Merge "Protect all clean operations"
-rw-r--r-- | jjb/functest/xtestingci.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/functest/xtestingci.yaml b/jjb/functest/xtestingci.yaml index 624eae137..b1bcb6a2d 100644 --- a/jjb/functest/xtestingci.yaml +++ b/jjb/functest/xtestingci.yaml @@ -7,9 +7,9 @@ curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-amd64 chmod +x ./kind sudo mv ./kind /usr/local/bin/kind - kind delete clusters xtesting - sudo docker ps -aq |xargs sudo docker stop - sudo docker ps -aq |xargs sudo docker rm + kind delete clusters xtesting | true + sudo docker ps -aq |xargs sudo docker stop | true + sudo docker ps -aq |xargs sudo docker rm | true sudo rm -rf /data/* sudo pip3 install ansible ansible-galaxy install -f collivier.xtesting |