hget logs for kubectl apply code example
Example 1: kubectl list context
# list kubernets contexts
kubectl config get-contexts
Example 2: 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