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>
16 lines
351 B
Bash
Executable File
16 lines
351 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-provisioner csi-cephfsplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac csidriver)
|
|
|
|
for obj in "${objects[@]}"; do
|
|
kubectl delete -f "./$obj.yaml"
|
|
done
|