Answers for "kubectl create pod"

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
1

kubectl create pod

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

Browse Popular Code Answers by Language