Replace cascade=false -> cascade=orphan

This commit is contained in:
Pankaj Patil
2021-08-14 20:27:40 +05:30
parent 677c6edc1b
commit b4ef0b940e
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