查看全部 pod 列表, -n 後跟 namespace, 查看指定的命名空間node
kubectl get pod kubectl get pod -n kube kubectl get pod -o wide
查看 RC 和 service 列表, -o wide 查看詳細信息redis
kubectl get rc,svc kubectl get pod,svc -o wide kubectl get pod <pod-name> -o yaml
顯示 Node 的詳細信息api
kubectl describe node 192.168.0.212
顯示 Pod 的詳細信息, 特別是查看 pod 沒法建立的時候的日誌bash
kubectl describe pod <pod-name> eg: kubectl describe pod redis-master-tqds9
根據 yaml 建立資源, apply 能夠重複執行,create 不行app
kubectl create -f pod.yaml kubectl apply -f pod.yaml
基於 pod.yaml 定義的名稱刪除 podide
kubectl delete -f pod.yaml
刪除全部包含某個 label 的pod 和 servicespa
kubectl delete pod,svc -l name=<label-name>
刪除全部 Pod日誌
kubectl delete pod --all
查看 endpoint 列表code
kubectl get endpoints
執行 pod 的 date 命令資源
kubectl exec <pod-name> -- date kubectl exec <pod-name> -- bash kubectl exec <pod-name> -- ping 10.24.51.9
經過bash得到 pod 中某個容器的TTY,至關於登陸容器
kubectl exec -it <pod-name> -c <container-name> -- bash eg: kubectl exec -it redis-master-cln81 -- bash
查看容器的日誌
kubectl logs <pod-name> kubectl logs -f <pod-name> # 實時查看日誌 kubectl log <pod-name> -c <container_name> # 若 pod 只有一個容器,能夠不加 -c
查看註釋
kubectl explain pod kubectl explain pod.apiVersion