mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-17 20:00:23 +00:00
deploy: add vault creation to rbd driver deployment
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>
This commit is contained in:
parent
b9d1f16360
commit
2e14116ed7
@ -1,15 +1,33 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
deployment_base="${1}"
|
deployment_base="${1}"
|
||||||
|
shift
|
||||||
|
kms_base="${1}"
|
||||||
|
|
||||||
if [[ -z $deployment_base ]]; then
|
if [[ -z "${deployment_base}" ]]; then
|
||||||
deployment_base="../../deploy/rbd/kubernetes"
|
deployment_base="../../deploy/rbd/kubernetes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd "$deployment_base" || exit 1
|
pushd "${deployment_base}" >/dev/null || exit 1
|
||||||
|
|
||||||
objects=(csi-provisioner-rbac csi-nodeplugin-rbac csi-config-map csi-rbdplugin-provisioner csi-rbdplugin)
|
objects=(csi-provisioner-rbac csi-nodeplugin-rbac csi-config-map csi-rbdplugin-provisioner csi-rbdplugin)
|
||||||
|
|
||||||
for obj in "${objects[@]}"; do
|
for obj in "${objects[@]}"; do
|
||||||
kubectl create -f "./$obj.yaml"
|
kubectl create -f "./${obj}.yaml"
|
||||||
done
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user