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