查看所有POD:kubectl get pod
查看某个POD: kubectl get pod name
以JSON格式输出POD信息: kubectl get pod name --output json
以yaml格式输出POD信息: kubectl get pod name --output yaml
删除某个POD:kubectl delete pod name
删除所有POD(慎用):kubectl delete pod -all
更新POD:kubectl replace ***.yaml