If you are getting this error message when you are trying to connect to the AKS cluster then it means you have already that session was added there but the default session was set to the second cluster.
Error details :
z : ERROR: A different object named clusterUser_<> already exists in users
PS C:\Users\hemekanayake> az aks get-credentials --resource-group <resource-group name>
az : ERROR: A different object named clusterUser_<Cluster_Name> already exists in users
----------------------------------------------------------------------------------------
To resolve this you can run the same command with -- overwrite-existing command which will overwrite the existing values added there.
az aks get-credentials --resource-group <Resource_group_name> --overwrite-existing
1 comment:
Thanks I was looking for -- overwrite-existing
Post a Comment