mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
3c50cb124b
Signed-off-by: Madhu Rajanna <mrajanna@redhat.com>
16 lines
370 B
Bash
Executable File
16 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
|
|
deployment_base="${1}"
|
|
|
|
if [[ -z $deployment_base ]]; then
|
|
deployment_base="../../deploy/cephfs/kubernetes"
|
|
fi
|
|
|
|
cd "$deployment_base" || exit 1
|
|
|
|
objects=(csi-cephfsplugin-attacher csi-cephfsplugin-provisioner csi-cephfsplugin csi-attacher-rbac csi-provisioner-rbac csi-nodeplugin-rbac)
|
|
|
|
for obj in "${objects[@]}"; do
|
|
kubectl delete -f "./$obj.yaml"
|
|
done
|