From 900ab7318ccb9a2da1b2b76b970fb6df35d63ee1 Mon Sep 17 00:00:00 2001 From: Eldad Assis Date: Tue, 6 Aug 2024 11:17:01 +0300 Subject: [PATCH] Fix the uninstall command (was messed up in the markdown syntax) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c64da5e..d242781 100644 --- a/README.md +++ b/README.md @@ -87,13 +87,13 @@ kubectl apply -f /charts/jfrog-registry-operator/examples/secretrotator.yaml -n ### Uninstalling JFrog Secret Rotator operator ```shell -# uninstall secretrotator using the following command +# Uninstall the secretrotator using the following command helm uninstall secretrotator -n ${NAMESPACE} -# uninstall secretrotator object (path should be pointing to secretrotator CR yaml) -kubectl delete -f [secretrotator.yaml](https://github.com/jfrog/jfrog-registry-operator/blob/master/charts/jfrog-registry-operator/examples/secretrotator.yaml) -n ${NAMESPACE} +# Uninstall the secretrotator object (path should be pointing to the secretrotator.yaml) +kubectl delete -f secretrotator.yaml -n ${NAMESPACE} -# remove CRD from cluster +# Remove the CRD from the cluster kubectl delete crd secretrotators.apps.jfrog.com ```