這篇文章主要講解了“kubectl top插件的安裝方法”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“kubectl top插件的安裝方法”吧!
專注于為中小企業(yè)提供網(wǎng)站制作、網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)竹山免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上1000+企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/auth-delegator.yaml wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/metrics-server-service.yaml wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/auth-reader.yaml wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/metrics-apiservice.yaml wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/metrics-server-deployment.yaml wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/aggregated-metrics-reader.yaml wget http://pencil-file.oss-cn-hangzhou.aliyuncs.com/blog/resource-reader.yaml
核心配置:
containers: - name: metrics-server image: k8s.gcr.io/metrics-server-amd64:v0.3.2 imagePullPolicy: IfNotPresent #修改為本地有鏡像優(yōu)先使用 command: - /metrics-server - --metric-resolution=30s - --kubelet-insecure-tls - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP #容器的預(yù)設(shè)值 腳本 volumeMounts: - name: tmp-dir mountPath: /tmp
docker pull k8s.gcr.io/metrics-server-amd64
由于該鏡像在國(guó)外所以可能使用其他途徑 代理上網(wǎng)或者本地導(dǎo)入
代理上網(wǎng)法
mkdir -p /etc/systemd/system/docker.service.d #創(chuàng)建放代理的文件夾,默認(rèn)沒(méi)有 echo '[Service] Environment="HTTP_PROXY=192.168.0.26:8118" "HTTPS_PROXY=192.168.0.26:8118"' >/etc/systemd/system/docker.service.d/http-proxy.conf #創(chuàng)建代理的配置件,前提得有能訪問(wèn)到國(guó)外鏡像服務(wù)器的代理服務(wù)器 systemctl daemon-reload systemctl restart docker #重啟docker
以上腳本運(yùn)行一下 就能pull 到國(guó)外鏡像了
本地導(dǎo)出導(dǎo)入法 4.應(yīng)用 感謝各位的閱讀,以上就是“kubectl top插件的安裝方法”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)kubectl top插件的安裝方法這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
先到拉取完畢的主機(jī)上導(dǎo)出
docker save -o metrics-server-amd64:v0.3.2.tar k8s.gcr.io/metrics-server-amd64:v0.3.2
#.tar 為完成的打包文件,后面的是需要導(dǎo)出的鏡像名需要帶版本名,鏡像名用docker images 查看
導(dǎo)入
docker load
kubectl apply -f ./
#應(yīng)用下載的所有yaml文件
kubectl get pod -n kube-system
#查看一下pod 是否正常
當(dāng)前題目:kubectltop插件的安裝方法-創(chuàng)新互聯(lián)
地址分享:http://weahome.cn/article/spjsj.html