docker-k8s-devops/chapter9/labs/pod-basic/README.md

9 lines
404 B
Markdown
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Pod 基础
```
$ kubectl get pods # 获取所有正在运行的POD
$ kubectl get pods -o wide # 获取pod的更多信息比如在哪台k8s机器上
$ kubectl describe pod <pod> #获取一个POD的详细信息
$ kubectl exec <pod> <cmd> #在pod里的container里执行一个命令如果这个pod有多个container默认会在第一个里执行或者通过-c去指定哪个
```