kubectl explain
kubectl get pods
kubectl describe pods my-pod
kubectl get pod -w
可以看到一个 namespace 中所有的 pod 的 phase 变化,请参考 Pod 的生命周期。
kubectl logs my-pod
kubectl logs my-pod -c my-container
kubectl logs -f my-pod
kubectl logs -f my-pod -c my-container
-f
参数可以 follow 日志输出。
kubectl exec my-pod -it /bin/bash
kubectl top pod POD_NAME --containers