Created
September 14, 2021 22:52
-
-
Save ainsofs/a2ec8da0c86f4dd327f4500d9ecac2b6 to your computer and use it in GitHub Desktop.
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
# show all pods | |
kubectl get pods --all-namespaces | |
# get pod info | |
kubectl -n {uuid} describe pods {container_name} | |
# delete pod | |
kubectl -n {uuid} delete pods -lname={container_name} | |
# view pod log | |
kubectl -n {uuid} log -lname={container_name} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment