mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-17 20:00:23 +00:00
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:
parent
2e14116ed7
commit
41be151ac6
@ -1,15 +1,33 @@
|
||||
#!/bin/bash
|
||||
|
||||
deployment_base="${1}"
|
||||
shift
|
||||
kms_base="${1}"
|
||||
|
||||
if [[ -z $deployment_base ]]; then
|
||||
if [[ -z "${deployment_base}" ]]; then
|
||||
deployment_base="../../deploy/rbd/kubernetes"
|
||||
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)
|
||||
|
||||
for obj in "${objects[@]}"; do
|
||||
kubectl delete -f "./$obj.yaml"
|
||||
kubectl delete -f "./${obj}.yaml"
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user