前言
本文主要用于记录 K8S 使用过程中自己经常用到的命令。
kubectl
创建服务
# kubectl apply -f ${service config}
kubectl apply -f service.yaml
获取 pods 资源占用
kubectl top pods
helm
安装 Chart
# helm install #{release name} ${chart path} --values ${release params}
helm install release chart/ --values release.yaml