ceph-csi/examples/rbd/plugin-deploy.sh
Yug 2e14116ed7 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>
2020-08-04 16:00:21 +00:00

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