ceph-csi/deploy/cephfs/kubernetes/teardown-csi.sh

8 lines
154 B
Bash
Raw Normal View History

2018-03-05 11:59:47 +00:00
#!/bin/bash
objects=(cephfsplugin csi-provisioner csi-attacher cephfs-storage-class)
for obj in ${objects[@]}; do
kubectl delete -f "./$obj.yaml"
done