📜  在 pod 中获取容器 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:54.608000             🧑  作者: 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