Skip to content

Commit 1b4bf32

Browse files
committed
edit
1 parent e7f23d1 commit 1b4bf32

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

AKS-Hybrid/aks-known-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This release maps to software version 10.2311.0.26 of Azure Local.
3838
| Portal | The available list of VM types is not complete when creating Kubernetes clusters in the Azure portal. | |
3939
| Cluster upgrade | The Azure CLI command for cluster upgrade `az akshybrid upgrade` does not work without specifying the target Kubernetes version. | You must specify the target Kubernetes version when you run the `az akshybrid upgrade` command with the `--version <target version>` parameter. |
4040
| Supported VM size | The `az akshybrid vmsize` command does not correctly return the required available VM types. | Wait for 10 minutes and rerun the same command to view the supported VM types. |
41-
| Azure Local upgrade | Creating an AKS Arc cluster in the Azure portal results in the error "The cluster extension does not support resource type **Microsoft.HybridContainerService/ProvisionedClusterInstances** with api-version `2024-01-01`". | The Azure portal is upgraded to the GA version, which doesn't support the preview of AKS on Azure Local 23H2. You must upgrade your Azure Local to the latest version. |
41+
| Azure Local upgrade | Creating an AKS Arc cluster in the Azure portal results in the error "The cluster extension does not support resource type **Microsoft.HybridContainerService/ProvisionedClusterInstances** with api-version `2024-01-01`". | The Azure portal is upgraded to the GA version, which doesn't support the preview of AKS on Azure Local, version 23H2. You must upgrade Azure Local to the latest version. |
4242

4343
## Next steps
4444

AKS-Hybrid/aks-networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Before you begin, make sure you have the following prerequisites:
2121

2222
- Install and configure Azure Local, version 23H2. Make sure you have the custom location Azure Resource Manager ID, as this ID is a required parameter for creating a logical network.
2323
- Make sure that the logical network you create contains enough usable IP addresses to avoid IP address exhaustion. IP address exhaustion can lead to Kubernetes cluster deployment failures. For more information, see [Networking concepts in AKS on Azure Local, version 23H2](aks-hci-network-system-requirements.md).
24-
- Make sure you have an external VM switch that can be accessed by all the servers in your Azure Local cluster. By default, an external switch is created during the deployment of your Azure Local cluster that you can use to associate with the logical network you will create.
24+
- Make sure you have an external VM switch that can be accessed by all the machines in your Azure Local cluster. By default, an external switch is created during the deployment of your Azure Local cluster that you can use to associate with the logical network you will create.
2525

2626
Run the following command to get the name of the external VM switch on your Azure Local cluster:
2727

AKS-Hybrid/aks-whats-new-23h2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ The following Kubernetes cluster deployment and management capabilities are avai
105105

106106
### Release 2311
107107

108-
Starting with this release, you can run Azure Kubernetes Service (AKS) workloads on your Azure Local system. AKS on Azure Local, version 23H2 uses Azure Arc to create new Kubernetes clusters on Azure Local directly from Azure.
108+
Starting with this release, you can run Azure Kubernetes Service (AKS) workloads on your Azure Local instance. AKS on Azure Local, version 23H2 uses Azure Arc to create new Kubernetes clusters on Azure Local directly from Azure.
109109

110110
The following Kubernetes cluster deployment and management capabilities are available:
111111

112-
- **Simplified infrastructure deployment on Azure Local**. In this release, the infrastructure components of AKS Arc, including the Arc Resource Bridge, Custom Location, and the Kubernetes Extension for the AKS Arc operator, are all deployed as part of the Azure Local, version 23H2 deployment. For more information, see [Deploy an Azure Local, version 23H2 system using the Azure portal](/azure-stack/hci/deploy/deploy-via-portal).
112+
- **Simplified infrastructure deployment on Azure Local**. In this release, the infrastructure components of AKS Arc, including the Arc Resource Bridge, Custom Location, and the Kubernetes Extension for the AKS Arc operator, are all deployed as part of the Azure Local, version 23H2 deployment. For more information, see [Deploy an Azure Local, version 23H2 instance using the Azure portal](/azure-stack/hci/deploy/deploy-via-portal).
113113
- **Integrated infrastructure upgrade on Azure Local**. The whole lifecycle management of AKS Arc infrastructure follows the same approach as the other components on Azure Local, version 23H2. For more information, see [Infrastructure component updates](infrastructure-components.md).
114114
- **New CLI consistent with Azure**. Starting with this release, a new consistent command-line experience is available to create and manage Kubernetes clusters.
115115
- **Cloud-based management**. You can now create and manage Kubernetes clusters on Azure Local with familiar tools such as the Azure portal and Azure CLI. For more information, see [Create Kubernetes clusters using Azure CLI](aks-create-clusters-cli.md).

AKS-Hybrid/deploy-gpu-node-pool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Install the Azure Local, version 23H2 operating system locally on each server in
7373
On each host machine, navigate to **Control Panel > Add or Remove programs**, uninstall the NVIDIA host driver, then reboot the machine. After the machine reboots, confirm that the driver was successfully uninstalled. Open an elevated PowerShell terminal and run the following command:
7474

7575
```powershell
76-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"3d video"
76+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -eq "3D Video Controller"}
7777
```
7878

7979
You should see the GPU devices appear in an error state as shown in this example output:
@@ -99,7 +99,7 @@ Dismount-VMHostAssignableDevice -LocationPath $lp1 -Force
9999
To confirm that the GPUs were correctly dismounted from the host, run the following command. You should put GPUs in an `Unknown` state:
100100

101101
```powershell
102-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"3d video"
102+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -eq "3D Video Controller"}
103103
```
104104

105105
```output
@@ -131,7 +131,7 @@ pnputil /scan-devices
131131
After you install the mitigation driver, the GPUs are listed in the **OK** state under **Nvidia A2_base - Dismounted**:
132132

133133
```powershell
134-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"nvidia"
134+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -match "Nvidia"}"
135135
```
136136

137137
```output

AKS-Hybrid/deploy-load-balancer-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Microsoft.KubernetesRuntime RegistrationRequired Registered
8383
Obtain the Application ID of the Arc extension by running [az ad sp list](/cli/azure/ad/sp#az-ad-sp-list). In order to run the following command, you must be a `user` member of your Azure tenant. For more information about user and guest membership, see [default user permissions in Microsoft Entra ID](/entra/fundamentals/users-default-permissions).
8484

8585
```azurecli
86-
$objID = az ad sp list --filter "appId eq '087fca6e-4606-4d41-b3f6-5ebdf75b8b4c'" --query "[].id" --output tsv
86+
$objID = az ad sp list --filter "appId eq '00001111-aaaa-2222-bbbb-3333cccc4444'" --query "[].id" --output tsv
8787
```
8888

8989
Once you have the $objID, you can install the MetalLB Arc extension on your Kubernetes cluster. To run the below command, you need to have [**Kubernetes extension contributor**](/azure/role-based-access-control/built-in-roles/containers#kubernetes-extension-contributor) role.

0 commit comments

Comments
 (0)