我有一个Kubernetes集群在本地计算机上运行(通过docker-for-desktop),并且已部署了一个指标服务器来监视CPU使用率。我想对metrics-server-deployment.yaml
/metrics-server/deploy/1.8+
文件进行一些更改
我已经完成了更改,但是我不知道如何重新部署指标服务器,以便它可以反映新的更改。我是K8S的新手,很想获得一些帮助/技巧或有用的资源。
预先感谢
答案 0 :(得分:1)
在您拥有metrics-server-deployment.yaml
的目录中,只需运行:
kubectl apply -f metrics-server-deployment.yaml
如果有投诉,您也可以手动将其删除并运行:
kubectl create -f metrics-server-deployment.yaml
答案 1 :(得分:0)
您可以手动编辑文件,然后使用
kubectl delete -f /metrics-server/deploy/1.8+
kubectl apply -f /metrics-server/deploy/1.8+
或者(我认为是更好的版本),您只需使用以下内容即可编辑部署本身
kubectl edit deployment -n kube-system metrics-server