mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
8 lines
154 B
Bash
Executable File
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
|