Quickstart: Connect an existing Kubernetes cluster to Azure Arc
Get started with Azure Arc-enabled Kubernetes by using Azure CLI or Azure PowerShell to connect an existing Kubernetes cluster to Azure Arc.
For a conceptual look at connecting clusters to Azure Arc, see Azure Arc-enabled Kubernetes agent overview.
Prerequisites
An Azure account with an active subscription. Create an account for free.
A basic understanding of Kubernetes core concepts.
An identity (user or service principal) which can be used to log in to Azure CLI and connect your cluster to Azure Arc.
Important
- The identity must have 'Read' and 'Write' permissions on the Azure Arc-enabled Kubernetes resource type (
Microsoft.Kubernetes/connectedClusters). - The Kubernetes Cluster - Azure Arc Onboarding built-in role can be used for this identity. This role is useful for at-scale onboarding, as it has only the granular permissions required to connect clusters to Azure Arc, and doesn't have permission to update, delete, or modify any other clusters or other Azure resources.
- The identity must have 'Read' and 'Write' permissions on the Azure Arc-enabled Kubernetes resource type (
Install or upgrade Azure CLI to version >= 2.16.0
Install the connectedk8s Azure CLI extension of version >= 1.2.0:
az extension add --name connectedk8sAn up-and-running Kubernetes cluster. If you don't have one, you can create a cluster using one of these options:
Self-managed Kubernetes cluster using Cluster API
If you want to connect a OpenShift cluster to Azure Arc, execute the following command one time on your cluster before running
az connectedk8s connect:oc adm policy add-scc-to-user privileged system:serviceaccount:azure-arc:azure-arc-kube-aad-proxy-saNote
The cluster needs to have at least one node of operating system and architecture type
linux/amd64. Clusters with onlylinux/arm64nodes aren't yet supported.
A kubeconfig file and context pointing to your cluster.
Register providers for Azure Arc-enabled Kubernetes
Enter the following commands:
az provider register --namespace Microsoft.Kubernetes az provider register --namespace Microsoft.KubernetesConfiguration az provider register --namespace Microsoft.ExtendedLocationMonitor the registration process. Registration may take up to 10 minutes.
az provider show -n Microsoft.Kubernetes -o table az provider show -n Microsoft.KubernetesConfiguration -o table az provider show -n Microsoft.ExtendedLocation -o tableOnce registered, you should see the
RegistrationStatestate for these namespaces change toRegistered.
Meet network requirements
Important
Azure Arc agents require the following outbound URLs on https://:443 to function.
For *.servicebus.windows.net, websockets need to be enabled for outbound access on firewall and proxy.
| Endpoint (DNS) | Description |
|---|---|
https://management.azure.com (for Azure Cloud), https://management.usgovcloudapi.net (for Azure US Government) |
Required for the agent to connect to Azure and register the cluster. |
https://<region>.dp.kubernetesconfiguration.azure.com (for Azure Cloud), https://<region>.dp.kubernetesconfiguration.azure.us (for Azure US Government) |
Data plane endpoint for the agent to push status and fetch configuration information. |
https://login.microsoftonline.com, https://<region>.login.microsoft.com, login.windows.net (for Azure Cloud), https://login.microsoftonline.us, <region>.login.microsoftonline.us (for Azure US Government) |
Required to fetch and update Azure Resource Manager tokens. |
https://mcr.microsoft.com, https://*.data.mcr.microsoft.com |
Required to pull container images for Azure Arc agents. |
https://gbl.his.arc.azure.com (for Azure Cloud), https://gbl.his.arc.azure.us (for Azure US Government) |
Required to get the regional endpoint for pulling system-assigned Managed Identity certificates. |
https://*.his.arc.azure.com (for Azure Cloud), https://usgv.his.arc.azure.us (for Azure US Government) |
Required to pull system-assigned Managed Identity certificates. |
*.servicebus.windows.net, guestnotificationservice.azure.com, *.guestnotificationservice.azure.com, sts.windows.net, https://k8sconnectcsp.azureedge.net |
For Cluster Connect and for Custom Location based scenarios. |
https://k8connecthelm.azureedge.net |
az connectedk8s connect uses Helm 3 to deploy Azure Arc agents on the Kubernetes cluster. This endpoint is needed for Helm client download to facilitate deployment of the agent helm chart. |
Create a resource group
Run the following command:
az group create --name AzureArcTest --location EastUS --output table
Output:
Location Name
---------- ------------
eastus AzureArcTest
Connect an existing Kubernetes cluster
Run the following command:
az connectedk8s connect --name AzureArcTest1 --resource-group AzureArcTest
Note
If you are logged into Azure CLI using a service principal, an additional parameter needs to be set to enable the custom location feature on the cluster.
Output:
Helm release deployment succeeded
{
"aadProfile": {
"clientAppId": "",
"serverAppId": "",
"tenantId": ""
},
"agentPublicKeyCertificate": "xxxxxxxxxxxxxxxxxxx",
"agentVersion": null,
"connectivityStatus": "Connecting",
"distribution": "gke",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/AzureArcTest/providers/Microsoft.Kubernetes/connectedClusters/AzureArcTest1",
"identity": {
"principalId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"tenantId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"type": "SystemAssigned"
},
"infrastructure": "gcp",
"kubernetesVersion": null,
"lastConnectivityTime": null,
"location": "eastus",
"managedIdentityCertificateExpirationTime": null,
"name": "AzureArcTest1",
"offering": null,
"provisioningState": "Succeeded",
"resourceGroup": "AzureArcTest",
"tags": {},
"totalCoreCount": null,
"totalNodeCount": null,
"type": "Microsoft.Kubernetes/connectedClusters"
}
Tip
The above command without the location parameter specified creates the Azure Arc-enabled Kubernetes resource in the same location as the resource group. To create the Azure Arc-enabled Kubernetes resource in a different location, specify either --location <region> or -l <region> when running the az connectedk8s connect command.
Connect using an outbound proxy server
If your cluster is behind an outbound proxy server, requests must be routed via the outbound proxy server.
Set the environment variables needed for Azure CLI to use the outbound proxy server:
export HTTP_PROXY=<proxy-server-ip-address>:<port> export HTTPS_PROXY=<proxy-server-ip-address>:<port> export NO_PROXY=<cluster-apiserver-ip-address>:<port>Run the connect command with proxy parameters specified:
az connectedk8s connect --name <cluster-name> --resource-group <resource-group> --proxy-https https://<proxy-server-ip-address>:<port> --proxy-http http://<proxy-server-ip-address>:<port> --proxy-skip-range <excludedIP>,<excludedCIDR> --proxy-cert <path-to-cert-file>
Note
- Some network requests such as the ones involving in-cluster service-to-service communication need to be separated from the traffic that is routed via the proxy server for outbound communication. The
--proxy-skip-rangeparameter can be used to specify the CIDR range and endpoints in a comma-separated way so that any communication from the agents to these endpoints do not go via the outbound proxy. At a minimum, the CIDR range of the services in the cluster should be specified as value for this parameter. For example, let's saykubectl get svc -Areturns a list of services where all the services have ClusterIP values in the range10.0.0.0/16. Then the value to specify for--proxy-skip-rangeis10.0.0.0/16,kubernetes.default.svc,.svc.cluster.local,.svc. --proxy-http,--proxy-https, and--proxy-skip-rangeare expected for most outbound proxy environments.--proxy-certis only required if you need to inject trusted certificates expected by proxy into the trusted certificate store of agent pods.- The outbound proxy has to be configured to allow websocket connections.
For outbound proxy servers where only a trusted certificate needs to be provided without the proxy server endpoint inputs, az connectedk8s connect can be run with just the --proxy-cert input specified. In case multiple trusted certificates are expected, the combined certificate chain can be provided in a single file using the --proxy-cert parameter.
Run the connect command with the --proxy-cert parameter specified:
az connectedk8s connect --name <cluster-name> --resource-group <resource-group> --proxy-cert <path-to-cert-file>
Verify cluster connection
Run the following command:
az connectedk8s list --resource-group AzureArcTest --output table
Output:
Name Location ResourceGroup
------------- ---------- ---------------
AzureArcTest1 eastus AzureArcTest
Note
After onboarding the cluster, it takes around 5 to 10 minutes for the cluster metadata (cluster version, agent version, number of nodes, etc.) to surface on the overview page of the Azure Arc-enabled Kubernetes resource in Azure portal.
View Azure Arc agents for Kubernetes
Azure Arc-enabled Kubernetes deploys a few agents into the azure-arc namespace.
View these deployments and pods using:
kubectl get deployments,pods -n azure-arcVerify all pods are in a
Runningstate.Output:
NAME READY UP-TO-DATE AVAILABLE AGE deployment.apps/cluster-metadata-operator 1/1 1 1 13d deployment.apps/clusterconnect-agent 1/1 1 1 13d deployment.apps/clusteridentityoperator 1/1 1 1 13d deployment.apps/config-agent 1/1 1 1 13d deployment.apps/controller-manager 1/1 1 1 13d deployment.apps/extension-manager 1/1 1 1 13d deployment.apps/flux-logs-agent 1/1 1 1 13d deployment.apps/kube-aad-proxy 1/1 1 1 13d deployment.apps/metrics-agent 1/1 1 1 13d deployment.apps/resource-sync-agent 1/1 1 1 13d NAME READY STATUS RESTARTS AGE pod/cluster-metadata-operator-9568b899c-2stjn 2/2 Running 0 13d pod/clusterconnect-agent-576758886d-vggmv 3/3 Running 0 13d pod/clusteridentityoperator-6f59466c87-mm96j 2/2 Running 0 13d pod/config-agent-7cbd6cb89f-9fdnt 2/2 Running 0 13d pod/controller-manager-df6d56db5-kxmfj 2/2 Running 0 13d pod/extension-manager-58c94c5b89-c6q72 2/2 Running 0 13d pod/flux-logs-agent-6db9687fcb-rmxww 1/1 Running 0 13d pod/kube-aad-proxy-67b87b9f55-bthqv 2/2 Running 0 13d pod/metrics-agent-575c565fd9-k5j2t 2/2 Running 0 13d pod/resource-sync-agent-6bbd8bcd86-x5bk5 2/2 Running 0 13d
For more information about these agents, see Azure Arc-enabled Kubernetes agent overview.
Clean up resources
You can delete the Azure Arc-enabled Kubernetes resource, any associated configuration resources, and any agents running on the cluster using Azure CLI using the following command:
az connectedk8s delete --name AzureArcTest1 --resource-group AzureArcTest
Note
Deleting the Azure Arc-enabled Kubernetes resource using the Azure portal removes any associated configuration resources, but does not remove any agents running on the cluster. Best practice is to delete the Azure Arc-enabled Kubernetes resource using az connectedk8s delete rather than deleting the resource in the Azure portal.
Next steps
Advance to the next article to learn how to deploy configurations to your connected Kubernetes cluster using GitOps.
Povratne informacije
Pošalјite i prikažite povratne informacije za