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