Answers for "kubectl get pod"

1

kubernetes get inside pod

kubectl exec -it <pod-name> -- sh
Posted by: Guest on March-09-2021
0

kubectl get pods

# Get pods in default namespace
kubectl get pods

#Get Pods in my-namespace
kubectl get pods -n my-namespace

#Get Pods in all namespaces
kubectl get pods --all-namespaces
Posted by: Guest on October-20-2020
2

kubectl get pod by node

kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=<node>
Posted by: Guest on September-04-2020
0

kubectl describe to yaml

kubectl describe <type> <name> -o yaml
Posted by: Guest on August-25-2020
0

kubectl create pod

kubectl run <pod-name> --image=<image> --restart=Never
Posted by: Guest on August-19-2020
-1

kubectl get pod events

kubectl get event --namespace abc-namespace --field-selector involvedObject.name=my-pod-zl6m6
Posted by: Guest on May-04-2021

Browse Popular Code Answers by Language