Uninstall Vault operator

To uninstall Vault operator, 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 operator when installing.

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

Using Helm 2

$ helm delete vault-operator

Using YAML (with Helm 3)

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

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