mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-02-15 15:30:34 +00:00
Automatic merge from submit-queue (batch tested with PRs 63291, 63490, 60445, 63507, 63524). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. default the ignorenotfound for delete when selecting objects When selecting resources and then deleting them (as opposed to specifically indicating a resource to delete) we should default to not failing if something disappeared partway through. This is quite common when label selecting deletes and GC runs before you get to a dependent object. I also took the liberty of doing complete work in complete instead of validate. ```release-note `kubectl delete` with selection criteria defaults to ignoring not found errors ``` @kubernetes/sig-cli-maintainers