kubectl all namespace code example

Example 1: kubectl change namespace

kubectl config set-context --current --namespace=my-namespace

Example 2: kubernetes get namespace

# Get Namespaces for current cluster
kubectl get namespaces

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