Kubernetes 仪表板不显示 CPU 和内存使用情况

Kubernetes Dashboard does not show CPU and Memory Usage

我对 Kubernetes 仪表板有疑问。 我实际使用托管 Kubernetes 服务 AKS 并使用以下设置创建了一个 Kubernetes 集群:

自动配置corednscorednsautoscaleromsagent-rs启动成功, tunnelfrontmetrics-server.

之后我为我的服务应用了三个部署,它们都部署成功。

现在,我想访问 Kubernetes 仪表板。我使用了 https://artifacthub.io/packages/helm/k8s-dashboard/kubernetes-dashboard.

中描述的指令

之后我调用 kubectl proxy 通过 url 访问仪表板:http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/.

在我使用我的 kubeconfig-File 登录到 Kubernetes 仪表板后,我得到以下输出,但 cpu 没有显示任何内存使用情况。

当我执行 kubectl describe kubernetes-dashboard pod 时,我得到以下信息:

来自 pod 的日志如下:

Internal error occurred: No metric client provided. Skipping metrics.
2021/12/11 19:23:04 [2021-12-11T19:23:04Z] Outcoming response to 127.0.0.1:43392 with 200 status code
2021/12/11 19:23:04 Internal error occurred: No metric client provided. Skipping metrics.
2021/12/11 19:23:04 [2021-12-11T19:23:04Z] Outcoming response to 127.0.0.1:43392 with 200 status code
2021/12/11 19:23:04 Internal error occurred: No metric client provided. Skipping metrics.

... I used the instruction which is described on https://artifacthub.io/packages/helm/k8s-dashboard/kubernetes-dashboard.

仪表板需要一种方法来“缓存”从指标服务器收集的一小部分 window 指标。那里提供的说明没有启用此功能。您可以 运行 以下 install/upgrade kubernetes-dashboard 启用指标抓取:

helm upgrade -i kubernetes-dashboard/kubernetes-dashboard --name my-release \  
--set=service.externalPort=8080,resources.limits.cpu=200m,metricsScraper.enabled=true