ceph-csi/deploy/cephfs/kubernetes/teardown-csi.sh
2018-03-05 13:21:30 +01:00

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