mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
8 lines
154 B
Bash
8 lines
154 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
objects=(cephfsplugin csi-provisioner csi-attacher cephfs-storage-class)
|
||
|
|
||
|
for obj in ${objects[@]}; do
|
||
|
kubectl delete -f "./$obj.yaml"
|
||
|
done
|