Skip to content

Commit

Permalink
Merge pull request #8439 from cemsbr/fix-teardown-docs
Browse files Browse the repository at this point in the history
docs: fix command to remove cluster CRD finalizer
  • Loading branch information
travisn committed Jul 30, 2021
2 parents e5a261f + 9ab343f commit a3107cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/ceph-teardown.md
Expand Up @@ -153,7 +153,7 @@ If for some reason the operator is not able to remove the finalizer (ie. the ope
```console
for CRD in $(kubectl get crd -n rook-ceph | awk '/ceph.rook.io/ {print $1}'); do
kubectl get -n rook-ceph "$CRD" -o name | \
xargs -I {} kubectl patch {} --type merge -p '{"metadata":{"finalizers": [null]}}'
xargs -I {} kubectl patch -n rook-ceph {} --type merge -p '{"metadata":{"finalizers": [null]}}'
done
```

Expand Down

0 comments on commit a3107cf

Please sign in to comment.