获取集群的基本信息
kubectl cluster-infokubectl get nodeskubectl get namespaceskubectl get deployment --all-namespaceskubectl get svc --all-namespaceskubectl get podkubectl get pod -o wide --all-namespaceskubectl logs podName创建pod或srvkubectl create -f development.yaml检查将要运行的 Pod 的资源状况kubectl describe pod podName删除 Podkubectl delete pod podNamepod有多少副本kubectl get rc扩展 Podkubectl scale --replicas=3 rc podName删除kubectl delete deployment kubernetes-dashboard --namespace=kube-systemkubectl delete svc kubernetes-dashboard --namespace=kube-systemkubectl delete -f kubernetes-dashboard.yaml 进入podkubectl exec -ti podName /bin/bash