1.获取节点
#kubectl get nodes
2.创建
#kubectl create -f webserver.yaml
3.查看创建的状态,状态为Pending【准备中】,Running状态【已经创建成功】
#kubectl get pods
4.查看该容器在哪个节点
#kubectl get pods -o wide
5.查看该容器的所有状态
#kubectl get pods httpd -o yaml
6.删除Pod
#kubectl delete pod httpd
7.进入Pod对应的容器内部
kubectl exec -it rc-jenkins-3049460636-lppbn /bin/bash