查看k8s/k3s的安装状态
kubectl get all -n kube-sysyem
查看rc、namespace、pod、service
kubectl get rc,namespace,pods,svc
查看指定pod跑在哪个node上
ubectl get pod mysql -o wide
查看相关信息,包括报错和镜像拉取进度
kubectl describe pod mysql
通过配置文件创建一个集群资源对象
kubectl create -f **.json/yaml
删除某对象
kubectl delete -f **.json/yaml