mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
Not constraining the inventory to .ini allows us to use dynamic inventory, which is needed for simplifying kubevirt jobs inventory. Also reduces the scope of the ANSIBLE_INVENTORY variable.
10 lines
172 B
Bash
Executable File
10 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
make -C tests delete-${CI_PLATFORM} -s
|
|
|
|
if [ -d ~/.ara ] ; then
|
|
tar czvf ${CI_PROJECT_DIR}/cluster-dump/ara.tgz ~/.ara
|
|
rm -fr ~/.ara
|
|
fi
|