Uninstall Vault CSI Driver

To uninstall Vault CSI driver, run the following command:

Using Helm 3

In Helm 3, release names are scoped to a namespace. So, provide the namespace you used to install the CSI driver when installing.

$ helm uninstall csi-vault --namespace kube-system

Using Helm 2

$ helm delete csi-vault

Using YAML (with Helm 3)

If you prefer to not use Helm, you can generate YAMLs from Vault CSI driver chart and uninstall using kubectl.

$ helm template vault-operator appscode/csi-vault --namespace kube-system | kubectl delete -f -