Answers for "kubernetes get services"

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
0

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
Posted by: Guest on October-20-2020
0

kubectl describe to yaml

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

Code answers related to "kubernetes get services"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language