diff options
author | narindergupta <narinder.gupta@canonical.com> | 2017-08-17 14:23:32 -0500 |
---|---|---|
committer | narindergupta <narinder.gupta@canonical.com> | 2017-08-17 14:23:32 -0500 |
commit | 46d324c59c8791d0e54cafc00b3e2ccaf9adf269 (patch) | |
tree | 5c765b9f066c2adb9d76b39d638b75ce0ce86f73 /ci/03-maasdeploy.sh | |
parent | 98d540cb9776e35e7d77c6544b9fa787c973d4a0 (diff) |
delete pod if exist during maas deployment.
Change-Id: Id045671934696ff96d46079c0f1a8e0ea2a172c2
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/03-maasdeploy.sh')
-rwxr-xr-x | ci/03-maasdeploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/03-maasdeploy.sh b/ci/03-maasdeploy.sh index e741cd87..788454c9 100755 --- a/ci/03-maasdeploy.sh +++ b/ci/03-maasdeploy.sh @@ -384,7 +384,8 @@ addnodes(){ do maas $PROFILE machine delete $m done - maas $PROFILE pod delete 1 || true + podno=$(maas $PROFILE pods read | jq -r ".[]".id) + maas $PROFILE pod delete $podno || true # if we have a virshurl configuration we use it, else we use local VIRSHURL=$(cat labconfig.json | jq -r '.opnfv.virshurl') |