AKS kubectl Access: Difference between revisions
Jump to navigation
Jump to search
Line 14: | Line 14: | ||
az aks get-credentials --resource-group <resource-group-name> --name <aks-cluster-name> | az aks get-credentials --resource-group <resource-group-name> --name <aks-cluster-name> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
This command will automatically update the local kubectl context configuration [[.kube/config]] and add a new context named after the AKS cluster. | |||
=With Azure Cloud Shell= | =With Azure Cloud Shell= | ||
{{Internal|Azure_Concepts#Azure_Cloud_Shell|Azure Cloud Shell}} | {{Internal|Azure_Concepts#Azure_Cloud_Shell|Azure Cloud Shell}} |
Revision as of 21:56, 31 March 2021
Internal
Procedure to Enable Local kubectl Access
Install and configure Azure CLI. For more details, see:
Login:
az login
More details:
Configure the local kubectl context:
az aks get-credentials --resource-group <resource-group-name> --name <aks-cluster-name>
This command will automatically update the local kubectl context configuration .kube/config and add a new context named after the AKS cluster.