deploy: remove vault along with driver

The created vault should also be
brought down with the driver.

Signed-off-by: Yug <yuggupta27@gmail.com>
This commit is contained in:
Yug 2020-08-04 18:19:40 +05:30 committed by mergify[bot]
parent 2e14116ed7
commit 41be151ac6

View File

@ -1,15 +1,33 @@
#!/bin/bash #!/bin/bash
deployment_base="${1}" deployment_base="${1}"
shift
kms_base="${1}"
if [[ -z $deployment_base ]]; then if [[ -z "${deployment_base}" ]]; then
deployment_base="../../deploy/rbd/kubernetes" deployment_base="../../deploy/rbd/kubernetes"
fi fi
cd "$deployment_base" || exit 1 pushd "${deployment_base}" >/dev/null || exit 1
objects=(csi-rbdplugin-provisioner csi-rbdplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac) objects=(csi-rbdplugin-provisioner csi-rbdplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac)
for obj in "${objects[@]}"; do for obj in "${objects[@]}"; do
kubectl delete -f "./$obj.yaml" kubectl delete -f "./${obj}.yaml"
done done
popd >/dev/null || exit 1
if [[ -z "${kms_base}" ]]; then
kms_base="../kms/vault"
fi
pushd "${kms_base}" >/dev/null || exit 1
objects=(vault csi-vaulttokenreview-rbac kms-config)
for obj in "${objects[@]}"; do
kubectl delete -f "./${obj}.yaml"
done
popd >/dev/null || exit 1