We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01657f5 commit 15e5837Copy full SHA for 15e5837
deploy/uninstall-driver.sh
@@ -33,6 +33,13 @@ if [ $ver != "master" ]; then
33
repo="$repo/$ver"
34
fi
35
36
+if [[ "$#" -gt 1 ]]; then
37
+ if [[ "$2" == *"blobfuse-proxy"* ]]; then
38
+ echo "remove blobfuse-proxy daemonset ..."
39
+ kubectl delete daemonset csi-blobfuse-proxy -n kube-system --ignore-not-found
40
+ fi
41
+fi
42
+
43
44
echo "Uninstalling Azure Blob Storage CSI driver, version: $ver ..."
45
kubectl delete -f $repo/csi-blob-controller.yaml --ignore-not-found
0 commit comments