Created
January 10, 2023 13:35
-
-
Save vlobachev/f6a6e451d8bee8432312c68d3134ddaf to your computer and use it in GitHub Desktop.
How to delete k8s resources with finalizers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kubectl patch configmap/mymap \ | |
| --type json \ | |
| --patch='[ { "op": "remove", "path": "/metadata/finalizers" } ]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment