1
0
mirror of https://github.com/ceph/ceph-csi.git synced 2025-03-21 06:39:28 +00:00
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