Azure AKS Client Secret 已过期 - 如何更改?

Azure AKS Client Secret expired - How to change?

我在 Azure (AKS / ACS) 上有一个 Kubernetes 集群 运行。 我使用门户创建了集群。那里自动创建了一个 aadClient,其客户端密码现已过期。

有人可以告诉我如何设置我已经创建的新客户端密码吗?

目前 AKS 无法更新负载均衡器值或装载持久存储。

谢谢!

目前还没有办法,至少官方支持。

https://github.com/Azure/AKS/issues/371

编辑:这个答案已经过时,现在可以

可以通过命令更新 AKS 客户端凭据:

az aks update-credentials \
    --resource-group myResourceGroup \
    --name myAKSCluster \
    --reset-service-principal \
    --service-principal $SP_ID \
    --client-secret $SP_SECRET

官方文档:https://docs.microsoft.com/en-us/azure/aks/update-credentials#update-aks-cluster-with-new-credentials