mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
2e14116ed7
Currently, the script does not deploy the driver singlehandedly; As the vault creation needs to be done prior to that. The script now includes the vault creation so that one script can be sufficient to deploy the rbd driver. Signed-off-by: Yug <yuggupta27@gmail.com>
34 lines
659 B
Bash
Executable File
34 lines
659 B
Bash
Executable File
#!/bin/bash
|
|
|
|
deployment_base="${1}"
|
|
shift
|
|
kms_base="${1}"
|
|
|
|
if [[ -z "${deployment_base}" ]]; then
|
|
deployment_base="../../deploy/rbd/kubernetes"
|
|
fi
|
|
|
|
pushd "${deployment_base}" >/dev/null || exit 1
|
|
|
|
objects=(csi-provisioner-rbac csi-nodeplugin-rbac csi-config-map csi-rbdplugin-provisioner csi-rbdplugin)
|
|
|
|
for obj in "${objects[@]}"; do
|
|
kubectl create -f "./${obj}.yaml"
|
|
done
|
|
|
|
popd >/dev/null || exit 1
|
|
|
|
if [[ -z "${kms_base}" ]]; then
|
|
kms_base="../kms/vault"
|
|
fi
|
|
|
|
pushd "${kms_base}" >/dev/null || exit 1
|
|
|
|
objects=(vault csi-vaulttokenreview-rbac kms-config)
|
|
|
|
for obj in "${objects[@]}"; do
|
|
kubectl create -f "./${obj}.yaml"
|
|
done
|
|
|
|
popd >/dev/null || exit 1
|