kubernetes stop pod code example

Example 1: kubectl delete all pods

kubectl delete --all pods

Example 2: kubectl delete pods

kubectl delete pod podname

Example 3: 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 4: get containers in pod

kubectl get pods POD_NAME_HERE -o jsonpath='{.spec.containers[*].name}'

Example 5: kubectl create pod

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