This CR synchronizes savanna-ci repo with sahara-ci-config repo. After this patch Sahara-CI will use sahara-ci-config repo. Change-Id: I371837b6c67a82ba8d596278bfb7f54633bacde1
8 lines
136 B
Bash
8 lines
136 B
Bash
#!/bin/bash
|
|
|
|
for i in $(nodepool-client list | grep ci-lab | awk -F '|' '{ print $2 }')
|
|
do
|
|
nodepool-client delete $i
|
|
sleep 2
|
|
done
|