From ad0df1a4806ef7495b7e6e0dcb847d5bd050370b Mon Sep 17 00:00:00 2001 From: Camil Blanaru Date: Mon, 13 Aug 2018 23:23:46 +0200 Subject: [PATCH] Small fix on instruction to delete PVC --- teardown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teardown b/teardown index 47ff4a7..636f18f 100755 --- a/teardown +++ b/teardown @@ -53,7 +53,7 @@ kubectl get crd -o 'jsonpath={.items[*].metadata.name}' | xargs -n 1 | fgrep cor #manually remove persistent volumes instructions echo -e "${GREEN}The persistent volumes for Grafana and Prometeus were not removed!" echo -e "${GREEN}To remove them, please run te following command:" -echo -e "${WHITE}kubectl get pvc -n ${NAMESPACE} | grep 'grafana\|prometheus' | cut -d " " -f 1 | xargs -n 1 kubectl delete pvc -n ${NAMESPACE}" +echo -e "${WHITE}kubectl get pvc -n ${NAMESPACE} | grep 'grafana\|prometheus' | cut -d '" "' -f 1 | xargs -n 1 kubectl delete pvc -n ${NAMESPACE}" #clean sed generated files find . -name "*.yaml-e" -exec rm -rf {} \;