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

8 lines
154 B
Bash
Executable File

#!/bin/bash
objects=(cephfs-storage-class cephfsplugin csi-attacher csi-provisioner)
for obj in ${objects[@]}; do
kubectl create -f "./$obj.yaml"
done