Register Azure AKS Cluster
In order to register an Azure Cluster, you must first register the Azure Cloud Account in gopaddle. Follow these steps to register the Azure Cloud Account.
Download and install Azure CLI by following these steps.
Login to Azure account and get the KubeConfig to access the cluster:
az login
az account set --subscription <subscription-id>
KUBECONFIG=./aks.config az aks get-credentials --resource-group <resource-group-name> --name <azure-cluster-name> --overwrite-existing
In the gopaddle UI, navigate to the Environments section and click on Add a Cluster.
Choose Register an existing Cluster
Provide the cluster name. The cluster name must match the AKS Cluster name in the azure portal.
Select the Cloud Provider as Azure
Select the Azure Cloud Account registered in step 1 and Provide the Subscription ID and the Resource Group Name

In the Authentication Step, upload the Kubeconfig file gathered in step 2.

If you have configured a bastion host, provide the Bastion Host IP, SSH Pem file, SSH port

Click on Finish to register the AKS Cluster.
Last updated