mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
16 lines
368 B
Bash
16 lines
368 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
deployment_base="${1}"
|
||
|
|
||
|
if [[ -z $deployment_base ]]; then
|
||
|
deployment_base="../../deploy/cephfs/kubernetes"
|
||
|
fi
|
||
|
|
||
|
cd "$deployment_base" || exit 1
|
||
|
|
||
|
objects=(csi-attacher-rbac csi-provisioner-rbac csi-nodeplugin-rbac csi-cephfsplugin-attacher csi-cephfsplugin-provisioner csi-cephfsplugin)
|
||
|
|
||
|
for obj in ${objects[@]}; do
|
||
|
kubectl create -f "./$obj.yaml"
|
||
|
done
|