Merge pull request #29394 from Patil2099/cascade-fix

Replace cascade=false -> cascade=orphan
This commit is contained in:
Kubernetes Prow Robot
2021-09-14 17:46:41 -07:00
committed by GitHub
5 changed files with 7 additions and 7 deletions
@@ -523,7 +523,7 @@ to keep running, but you want the rest of the Pods it creates
to use a different pod template and for the Job to have a new name.
You cannot update the Job because these fields are not updatable.
Therefore, you delete Job `old` but _leave its pods
running_, using `kubectl delete jobs/old --cascade=false`.
running_, using `kubectl delete jobs/old --cascade=orphan`.
Before deleting it, you make a note of what selector it uses:
```shell