mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
1e37aa108f
Signed-off-by: Michel van de Wouw <michelvandewouw@techforce1.nl>
34 lines
669 B
Bash
Executable File
34 lines
669 B
Bash
Executable File
#!/bin/bash
|
|
|
|
deployment_base="${1}"
|
|
shift
|
|
kms_base="${1}"
|
|
|
|
if [[ -z "${deployment_base}" ]]; then
|
|
deployment_base="../../deploy/rbd/kubernetes"
|
|
fi
|
|
|
|
pushd "${deployment_base}" >/dev/null || exit 1
|
|
|
|
objects=(csi-rbdplugin-provisioner csi-rbdplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac csidriver)
|
|
|
|
for obj in "${objects[@]}"; do
|
|
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
|