gpt4 book ai didi

azure - 在 azure k8s 中启用 prometheus 监控时出现问题

转载 作者:行者123 更新时间:2023-12-03 06:42:46 27 4
gpt4 key购买 nike

在 azure kubernetes 中配置 prometheus 时出现错误

enter image description here

最佳答案

我尝试在我的环境中重现相同的问题并得到以下结果

我有集群,我正在尝试在 azure Kubernetes 中配置 Prometheus,并且部署成功

enter image description here

要验证代理是否已部署,请使用以下命令

 kubectl get ds <dep_name> --namespace=kube-system
kubectl get rrs --namespace=kube-system

enter image description here

由于您使用服务主体而不是托管身份而出现此错误

要启用托管身份,请按照以下命令操作

具有服务主体的 AKS 集群首先禁用监控,然后升级到托管身份,Azure 公共(public)云支持此迁移

获取日志分析工作区 ID

az aks show -g <rg_name> -n <cluster_name> | grep -i "logAnalyticsWorkspaceResourceID"

要禁用监控,请使用以下命令

az aks disable-addons -a monitoring -g <rg_name> -n <cluster_name>

或者我可以在门户网站的 azure 监视器日志中获取它

enter image description here

我已将集群升级为系统管理身份,请使用以下命令进行升级

az aks update -g <rg_name> -n <cluster_name> --enable-managed-identity

enter image description here

我已启用具有托管身份验证的监控插件

az aks enable-addons -a monitoring --enable-msi-auth-for-monitoring -g <rg_name> -n <cluster_name> --workspace-resource-id <workspace_resource_id>

有关更多信息,请使用此文档 Reference

关于azure - 在 azure k8s 中启用 prometheus 监控时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74388825/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com