|
1 | 1 | ---
|
2 | 2 | title: System requirements and support matrix for AKS enabled by Azure Arc on VMware (preview)
|
3 | 3 | description: Learn about system requirements and the support matrix for AKS enabled by Azure Arc on VMware.
|
4 |
| -ms.date: 03/22/2024 |
| 4 | +ms.date: 09/16/2024 |
5 | 5 | ms.topic: conceptual
|
6 | 6 | author: sethmanheim
|
7 | 7 | ms.author: sethm
|
8 | 8 | ms.reviewer: leslielin
|
9 |
| -ms.lastreviewed: 03/22/2024 |
| 9 | +ms.lastreviewed: 09/16/2024 |
10 | 10 |
|
11 | 11 | ms.custom: references_regions
|
12 | 12 |
|
@@ -70,15 +70,35 @@ You should create a folder for VM templates, to store the Arc Resource Bridge an
|
70 | 70 |
|
71 | 71 | ## Supported Kubernetes version
|
72 | 72 |
|
73 |
| -In this preview release, you can only deploy the same Kubernetes version that the Arc Resource Bridge supports. See the [Arc Resource Bridge release notes](https://github.com/Azure/ArcResourceBridge/releases) for information about which Kubernetes version is supported for each specific version number. |
| 73 | +In this preview release, you can only deploy the same Kubernetes version that the Arc Resource Bridge supports. You can find the Arc Resource Bridge version in the Azure portal under **Azure Arc > Management > Resource Bridge**. To determine the corresponding Kubernetes version, see [What's new with Azure Arc resource bridge](/azure/azure-arc/resource-bridge/release-notes). |
74 | 74 |
|
75 | 75 | ## Custom location
|
76 | 76 |
|
77 |
| -If you choose to **Enable Kubernetes Service on VMware [preview]** when you **Connect vCenter to Azure** [from the Azure portal](/azure/azure-arc/vmware-vsphere/quick-start-connect-vcenter-to-arc-using-script), a custom location with the prefix **AKS-**, and a default namespace, are created for you to deploy AKS on VMware. If you **Enable Kubernetes Service on VMware [preview]** using the [Azure CLI process](aks-vmware-install-kubernetes-extension.md), you can specify the name of the custom location of your choice with the default namespace. |
| 77 | +If you choose to **Enable Kubernetes Service on VMware [preview]** when you **Connect vCenter to Azure** [from the Azure portal](/azure/azure-arc/vmware-vsphere/quick-start-connect-vcenter-to-arc-using-script), a custom location with the prefix **AKS-**, and a default namespace, are created for you to deploy AKS on VMware. If you enable the Azure Kubernetes Service on VMware using the [Azure CLI process](aks-vmware-install-kubernetes-extension.md), you can specify the name of the custom location of your choice with the default namespace. |
78 | 78 |
|
79 | 79 | > [!IMPORTANT]
|
80 | 80 | > You must use the **default** namespace.
|
81 | 81 |
|
| 82 | +To view the custom location namespace, use the `az customlocation show` command: |
| 83 | + |
| 84 | +```azurecli |
| 85 | +az customlocation show -g $customLocationResourceGroupName -n $customLocationName |
| 86 | +``` |
| 87 | + |
| 88 | +If your custom location was not created with the **default** namespace, use the following command to delete the custom location and create a custom location with the default namespace. For more information about how to manage custom locations, see [Create and manage custom locations](/azure/azure-arc/kubernetes/custom-locations). |
| 89 | + |
| 90 | +Delete the custom location: |
| 91 | + |
| 92 | +```azurecli |
| 93 | +az customlocation delete -g $customLocationResourceGroupName -n $customLocationName |
| 94 | +``` |
| 95 | + |
| 96 | +Create the custom location with the **default** namespace: |
| 97 | + |
| 98 | +```azurecli |
| 99 | +az customlocation create -g $customLocationResourceGroupName -n $customLocationName --cluster-extension-ids $clusteraksExtensionId --host-resource-id $ArcApplianceResourceId --namespace "default" |
| 100 | +``` |
| 101 | + |
82 | 102 | ## Azure requirements
|
83 | 103 |
|
84 | 104 | You must connect to your Azure account:
|
|
0 commit comments