Skip to content

Commit

Permalink
deploy: csidriver added to helper scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Michel van de Wouw <michelvandewouw@techforce1.nl>
  • Loading branch information
Michel van de Wouw authored and mergify[bot] committed Dec 12, 2022
1 parent 82ea8fe commit 46e073f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/cephfs/plugin-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

cd "$deployment_base" || exit 1

objects=(csi-provisioner-rbac csi-nodeplugin-rbac csi-config-map csi-cephfsplugin-provisioner csi-cephfsplugin)
objects=(csi-provisioner-rbac csi-nodeplugin-rbac csi-config-map csi-cephfsplugin-provisioner csi-cephfsplugin csidriver)

for obj in "${objects[@]}"; do
kubectl create -f "./$obj.yaml"
Expand Down
2 changes: 1 addition & 1 deletion examples/cephfs/plugin-teardown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

cd "$deployment_base" || exit 1

objects=(csi-cephfsplugin-provisioner csi-cephfsplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac)
objects=(csi-cephfsplugin-provisioner csi-cephfsplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac csidriver)

for obj in "${objects[@]}"; do
kubectl delete -f "./$obj.yaml"
Expand Down
2 changes: 1 addition & 1 deletion examples/rbd/plugin-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

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 csidriver)

for obj in "${objects[@]}"; do
kubectl create -f "./${obj}.yaml"
Expand Down
2 changes: 1 addition & 1 deletion examples/rbd/plugin-teardown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

pushd "${deployment_base}" >/dev/null || exit 1

objects=(csi-rbdplugin-provisioner csi-rbdplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac)
objects=(csi-rbdplugin-provisioner csi-rbdplugin csi-config-map csi-provisioner-rbac csi-nodeplugin-rbac csidriver)

for obj in "${objects[@]}"; do
kubectl delete -f "./${obj}.yaml"
Expand Down

0 comments on commit 46e073f

Please sign in to comment.