kubectl get pods of namespace code example
Example 1: kubernetes get services
# Get pods in default namespace
kubectl get services
#Get Pods in my-namespace
kubectl get services -n my-namespace
#Get Pods in all namespaces
kubectl get services --all-namespaces
Example 2: kubectl run pod
kubectl run <pod-name> --image=<image> --restart=Never