check before apply k8s code example
Example 1: kubernetes get deployments
# Get pods in default namespace
kubectl get deployments
#Get Pods in my-namespace
kubectl get deployments -n my-namespace
#Get Pods in all namespaces
kubectl get deployments --all-namespaces
Example 2: 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