Last active
May 19, 2020 10:31
-
-
Save marfenij/c8fcd35e792ccf2e29fdd0140b5be133 to your computer and use it in GitHub Desktop.
remove old stuff
This file contains 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
# get inactive rs | |
kubectl get rs | awk '{if ($2=="0") print $0}' | |
# delete inactive rs | |
kubectl get rs | awk '{if ($2=="0") print $1}' | xargs kubectl delete rs | |
# get error job | |
kubectl get job | awk '{if ($2=="0/1") print $0}' | |
# delete error job | |
kubectl get job | awk '{if ($2=="0/1") print $1}' | xargs kubectl delete job |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment