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 config set-context --current --namespace=<insert-namespace-name-here> | |
# Validate it | |
kubectl config view --minify | grep namespace: |
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 get pod --field-selector=status.phase==Succeeded | |
kubectl delete pod --field-selector=status.phase==Succeeded | |
kubectl delete pod --field-selector=status.phase==Failed | |
kubectl delete pods $(kubectl get pod --all-namespaces -o jsonpath='{.items[?(@.status.containerStatuses[*].state.waiting.reason=="CrashLoopBackOff")].metadata.name}') |
OlderNewer