kubenetes metrics-server監控資源
metrics-server版本相容:
1.檢視節點資源錯誤
[root@test35 ~]# kubectl top node
W0726 13:34:14.328777 14884 top_node.go:119] Using json format to get metrics. Next release will switch to protocol-buffers, switch early by passing --use-protocol-buffers flag
error: Metrics API not available
[root@test35 ~]#
2.下載映象
[root@test35 ~]# grep image components.yaml
image: k8s.gcr.io/metrics-server/metrics-server:v0.6.0 --檢視映象倉庫
imagePullPolicy: IfNotPresent
[root@test35 ~]# docker pull registry.cn-hangzhou.aliyuncs.com/zailushang/metrics-server:v0.6.0
v0.6.0: Pulling from zailushang/metrics-server
2df365faf0e3: Pull complete
aae7d2b1eda3: Pull complete
Digest: sha256:60a353297a2b74ef6eea928fe2d44efc8d8e6298441bf1184b2e3bc25ca1b3e2
Status: Downloaded newer image for registry.cn-hangzhou.aliyuncs.com/zailushang/metrics-server:v0.6.0
registry.cn-hangzhou.aliyuncs.com/zailushang/metrics-server:v0.6.0
You have mail in /var/spool/mail/root
[root@test35 ~]# docker tag registry.cn-hangzhou.aliyuncs.com/zailushang/metrics-server:v0.6.0 k8s.gcr.io/metrics-server/metrics-server:v0.6.0
[root@test35 ~]# docker images | grep metrics
registry.cn-hangzhou.aliyuncs.com/zailushang/metrics-server v0.6.0 5787924fe1d8 6 months ago 68.8MB
k8s.gcr.io/metrics-server/metrics-server v0.6.0 5787924fe1d8 6 months ago 68.8MB
[root@test35 ~]#
3.部署metrics-server元件
下載地址:
[root@test35 ~]# kubectl apply -f components.yaml
serviceaccount/metrics-server created
clusterrole.rbac.authorization.k8s.io/system:aggregated-metrics-reader created
clusterrole.rbac.authorization.k8s.io/system:metrics-server created
rolebinding.rbac.authorization.k8s.io/metrics-server-auth-reader created
clusterrolebinding.rbac.authorization.k8s.io/metrics-server:system:auth-delegator created
clusterrolebinding.rbac.authorization.k8s.io/system:metrics-server created
service/metrics-server created
deployment.apps/metrics-server created
apiservice.apiregistration.k8s.io/v1beta1.metrics.k8s.io created
[root@test35 ~]#
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25854343/viewspace-2907649/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 使用metrics-server監控k8s的資源指標ServerK8S指標
- 阿里雲容器Kubernetes監控(一)-資源監控阿里
- Grafana監控騰訊物理資源資訊Grafana
- jmeter 監控伺服器資源 求助!!!JMeter伺服器
- 利用Resource Timing監控資源載入速度
- 使用 Performance API 實現前端資源監控ORMAPI前端
- 【效能監控】如何有效監測網頁靜態資源大小?網頁
- kubeadm搭建kubenetes叢集(Ubuntu 20.04,kubenetes 1.20.5)Ubuntu
- 開源監控利器Prometheus初探Prometheus
- Linux中一個高效的資源監控器 – BpytopLinux
- MySQL監控-Datadog資料庫監控調研MySql資料庫
- 在Linux中,如何監控系統資源使用情況?Linux
- Python監控程序資源佔用併傳送郵件Python
- 在Linux中,如何進行系統資源的監控?Linux
- 前端資料監控到底在監控什麼?前端
- 開源監控系統Prometheus介紹Prometheus
- kubenetes映象下載
- DCIM 系統增強資料中心的電源監控能力
- 系統監控&JVM監控指標資料查詢JVM指標
- 監控採集上報和儲存監控資料策略
- SpringBoot2.x 多資料來源切換、druid監控、tkSpring BootUI
- 效能測試-基於 Python 的 Linux 伺服器資源監控PythonLinux伺服器
- 開源監控系統Prometheus的前世今生Prometheus
- .NET 開源實時監控系統 - WatchDog
- 黑盒監控、日誌監控
- 6.prometheus監控--監控dockerPrometheusDocker
- TiDB監控實現--存活監控TiDB
- 監控並處理一直不釋放資源的會話會話
- .NET Core 跨平臺資源監控庫及 dotnet tool 小工具
- 資料庫監控---PIGOSS BSM資料庫Go
- 監控資料庫活動資料庫
- 資料庫繁忙程度監控資料庫
- 滴滴內部監控系統 Nightingale 開源啦
- zabbix開源監控解決方案-本地化
- 目前哪些開源雲監控工具比較好用!
- 監控
- 聊聊前端監控——錯誤監控篇前端
- kubernetes部署metrics-serverServer