From 087547a833975f695c93f4b75fdeeeb221dc18fb Mon Sep 17 00:00:00 2001 From: Raoof Mohammed Date: Fri, 8 Jun 2018 16:18:38 -0400 Subject: [PATCH] Add delete crd to vault uninstall instructions --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 26daabf..d1bb834 100644 --- a/README.md +++ b/README.md @@ -133,18 +133,25 @@ For an overview of the default TLS configuration or how to specify custom TLS as ### Uninstalling Vault operator -1. Delete the Vault custom resource: +1. Delete the Vault Service: ``` kubectl -n default delete -f example/example_vault.yaml ``` -2. Delete the operators and other resources: +2. Delete the operators and rbac: ``` kubectl -n default delete deploy vault-operator etcd-operator kubectl -n default delete -f example/rbac.yaml ``` +2. Delete the CRDs: + + ``` + kubectl -n default delete -f example/vault_crd.yaml + kubectl -n default delete -f example/etcd_crds.yaml + ``` + [vault]: https://www.vaultproject.io/ [etcd-operator]: https://github.com/coreos/etcd-operator/