kubectl get pod code example

Example 1: kubernetes get inside pod

kubectl exec -it <pod-name> -- sh

Example 2: 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

Example 3: kubectl get pod by node

kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=<node>

Example 4: kubectl create pod

kubectl run <pod-name> --image=<image> --restart=Never

Example 5: kubectl describe to yaml

kubectl describe <type> <name> -o yaml

Example 6: kubectl get pod events

kubectl get event --namespace abc-namespace --field-selector involvedObject.name=my-pod-zl6m6

Tags:

Dart Example