📜  kubectl list context - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:43.811000             🧑  作者: Mango

代码示例2
# 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