我有一个Kubernetes集群运行在Azure(AKS / ACS)上。我使用门户创建了这个集群。在那里自动创建了一个aadClient,其客户端密码现已过期。有人能告诉我如何设置我已经创建的新客户端密码吗?现在AKS无法更新Loadbalancer值或挂载持久存储。谢谢大家!
ojsjcaue1#
AKS客户端凭据可通过以下命令更新:
az aks update-credentials \ --resource-group myResourceGroup \ --name myAKSCluster \ --reset-service-principal \ --service-principal $SP_ID \ --client-secret $SP_SECRET
正式文件:https://learn.microsoft.com/en-us/azure/aks/update-credentials#update-aks-cluster-with-new-credentials
tcomlyy62#
目前还没有办法做到这一点,至少官方支持。https://github.com/Azure/AKS/issues/371编辑:这个答案已经过时了,这是现在可能的
2条答案
按热度按时间ojsjcaue1#
AKS客户端凭据可通过以下命令更新:
正式文件:https://learn.microsoft.com/en-us/azure/aks/update-credentials#update-aks-cluster-with-new-credentials
tcomlyy62#
目前还没有办法做到这一点,至少官方支持。
https://github.com/Azure/AKS/issues/371
编辑:这个答案已经过时了,这是现在可能的