You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-local/known-issues.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Release notes with fixed and known issues in Azure Local
3
3
description: Read about the known issues and fixed issues in Azure Local.
4
4
author: alkohli
5
5
ms.topic: conceptual
6
-
ms.date: 07/21/2025
6
+
ms.date: 07/25/2025
7
7
ms.author: alkohli
8
8
ms.reviewer: alkohli
9
9
---
@@ -27,11 +27,11 @@ For the 2507 release of Azure Local, Microsoft released two security updates, ea
27
27
28
28
| Solution version | OS build |
29
29
|---------|---------|---------|
30
-
| 11.2507.1001.7| 25398.1732 |
31
-
| 12.2507.1001.8| 26100.4652 |
30
+
| 11.2507.1001.9| 25398.1732 |
31
+
| 12.2507.1001.10| 26100.4652 |
32
32
33
33
> [!IMPORTANT]
34
-
> The new deployments of this software use the **12.2507.1001.8** build. You can also update an existing deployment from 2506 by using **11.2507.1001.7**.
34
+
> The new deployments of this software use the **12.2507.1001.10** build. You can also update an existing deployment from 2506 by using **11.2507.1001.9**.
35
35
36
36
Release notes for this version include the issues fixed in this release, known issues in this release, and release note issues carried over from previous versions.
37
37
@@ -135,7 +135,7 @@ The following table lists the known issues in this release:
135
135
| Update <!--33470082-->| Solution update fails with the error: `Unable to install solution update "11.2506.1001.24" - Type 'UpdateFOD' of Role 'ComposedImageUpdate' raised an exception.`| For detailed steps on how to resolve this issue, see the [Troubleshooting guide](https://github.com/Azure/AzureLocal-Supportability/blob/main/TSG/Update/SolutionUpdate-UpdateFOD.md). |
136
136
| Deployment <!--33471589-->| After Azure portal deployment, SConfig network settings shows the error: `Set-SCfNetworksetting : Cannot bind argument to parameter 'Value' because it is null.`| There's no known workaround in this release. |
137
137
| Update <!--33448368-->| Cluster-Aware Updating runs might fail with the error:<br>`Type 'SBEPartnerConfirmCauDone' of Role 'SBE' raised an exception:<br>SBE_MsftCIOnlyCommon_CommonForTesting_4.2.2504.16: ErrorID: SBE-CAU-RUNNING-AFTER-DONE -- CAU run is still in progress when it should be done. See https://aka.ms/AzureLocal/SBE/CauHelp for help. Review full Get-CauRun output it identify if it is progressing or stuck. Wait for it to complete if progressing.`| Wait for CAU run to complete (wait for `Get-CauRun` to report `RunNotInProgress`) and resume the update. |
138
-
|Azure Local VMs <!--33811472-->| When no storage path is specified during deployment, resources (VMs, data disks, and images) are automatically placed on the first storage path of the cluster, even when other storage paths are also available. Over time, this might cause insufficient disk space on that path, potentially resulting in deployment failures. |Create resources with a specified storage path. For more information, see [Troubleshoot Azure Local Virtual Machines enabled by Azure Arc](../azure-local/manage/troubleshoot-arc-enabled-vms.md#resource-deployment-failure-due-to-insufficient-disk-space-on-the-first-storage-path). |
138
+
|Azure Local VMs <!--33811472-->| When no storage path is specified during deployment, resources (VMs, data disks, and images) are automatically placed on the first storage path of the cluster, even when other storage paths are also available. Over time, this might cause insufficient disk space on that path, potentially resulting in deployment failures. |Update to 2507 as this build contains a fix for the issue. Or, create resources with a specified storage path. For more information, see [Troubleshoot Azure Local Virtual Machines enabled by Azure Arc](../azure-local/manage/troubleshoot-arc-enabled-vms.md#resource-deployment-failure-due-to-insufficient-disk-space-on-the-first-storage-path). |
Copy file name to clipboardExpand all lines: azure-local/manage/disconnected-operations-deploy.md
+26-9Lines changed: 26 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,8 @@ Here's a checklist of things you need before you deploy Azure Local with disconn
51
51
- DNS server to resolve IP to FQDN names.
52
52
- Local credentials for Azure Local machines.
53
53
- Active directory credentials for Azure Local deployment.
54
+
-[Active directory OU and networking requirements](../deploy/deployment-prerequisites.md).
55
+
-[Local credentials and AD credentials to meet minimum password complexity](../deploy/deployment-prerequisites.md).
54
56
-[Active directory prepared for Azure Local deployment](../deploy/deployment-prep-active-directory.md).
55
57
- Certificates to secure ingress endpoints (24 certificates) and the public key (root) used to create these certificates.
56
58
- Certificates to secure the management endpoint (2 certificates).
@@ -561,6 +563,28 @@ In this section, verify the installation and create local Azure resources.
561
563
1. Sign in to your identity provider using the credentials you configured during the deployment.
562
564
- You should see a familiar Azure portal running in your network.
563
565
566
+
### Register required resource providers
567
+
568
+
Make sure you register the required resource providers before deployment. Here's an example of how to automate the resource providers registration from Azure CLI.
569
+
570
+
```azurecli
571
+
az cloud set -n 'azure.local'
572
+
az login
573
+
az provider register --namespace Microsoft.AzureStackHCI
574
+
az provider register --namespace Microsoft.ExtendedLocation
575
+
az provider register --namespace Microsoft.ResourceConnector
576
+
az provider register --namespace Microsoft.EdgeArtifact
577
+
```
578
+
579
+
Wait until all resource providers are in the state **Registered**. Here's a sample Azure CLI command to list all resource providers and their statuses.
580
+
581
+
```azurecli
582
+
az provider list -o table
583
+
```
584
+
585
+
> [!NOTE]
586
+
> You can also register or view resource provider statuses in the local portal. To do this, go to your **Subscription**, click the dropdown arrow for **Settings**, and select **Resource providers**.
587
+
564
588
### Create resource group SPN for cluster
565
589
566
590
Use the operator account to create an SPN for Arc initialization of each Azure Local node. To create the SPN, follow these steps:
@@ -670,7 +694,6 @@ To initialize each node, follow these steps. Modify where necessary to match you
670
694
ResourceGroup = $resourcegroup
671
695
SubscriptionID = $applianceSubscriptionId
672
696
TenantID = $applianceTenantId
673
-
Force = $true
674
697
CloudFqdn = $applianceFQDN
675
698
}
676
699
```
@@ -693,13 +716,7 @@ To initialize each node, follow these steps. Modify where necessary to match you
693
716
694
717
To enable Azure Local to be air-gapped or deployed fully disconnected, you must do the following on each node:
695
718
696
-
- Run this command to add the required environment variable:
Copy file name to clipboardExpand all lines: azure-local/manage/disconnected-operations-known-issues.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,13 @@ ai-usage: ai-assisted
17
17
18
18
This article lists critical known issues and their workarounds in disconnected operations for Azure Local.
19
19
20
-
These release notes update continuously, and we add critical issues that require a workaround as we find them. Before you deploy disconnected operations with Azure Local, review the information here.
20
+
These release notes update continuously, and we add critical issues that need a workaround as we find them. Before you deploy disconnected operations with Azure Local, review the information here.
21
21
22
-
## Known issues for version 2506
22
+
## Known issues in the preview release
23
23
24
24
### Azure Local deployment with Azure Keyvault
25
25
26
-
Role-Based Access Control (RBAC) permissions on a newly created Azure Key Vault take up to 20 minutes to propagate. If you create the Azure Key Vault in the local portal and try to finish the cloud deployment, you might encounter permission issues when validating the cluster before deployment.
26
+
Role-Based Access Control (RBAC) permissions on a newly created Azure Key Vault can take up to 20 minutes to propagate. If you create the Azure Key Vault in the local portal and try to finish the cloud deployment, you might run into permission issues when validating the cluster before deployment.
27
27
28
28
**Mitigation**: Wait 20 minutes after you create the Azure Key Vault to finish deploying the cluster, or create the key vault ahead of time. Assign the managed identity for each node, the key vault admin, and the user deploying to the cloud explicit roles on the key vault: **Key Vault Secrets Officer** and **Key Vault Data Access Administrator**.
Write-Verbose "Assigning permissions to $($accountInfo.user.name) on the Key Vault"
49
-
# Assign the secrets officer role to the resource group (could use KV explicit).
49
+
# Assign the secrets officer role to the resource group (you can use KV explicit).
50
50
az role assignment create --assignee $accountInfo.user.name --role "Key Vault Secrets Officer" --scope $kv.Id
51
51
az role assignment create --assignee $accountInfo.user.name --role "Key Vault Data Access Administrator" --scope $kv.Id
52
52
53
53
$machines = (az connectedmachine list -g $resourceGroupName)|ConvertFrom-Json
54
54
55
-
# For now only supporting minimum 3 machines for ALDO
55
+
# For now, only support a minimum of 3 machines for Azure Local disconnected operations
56
56
if($machines.Count -lt 3){
57
57
Write-Error "No machines found in the resource group $resourceGroupName. Please check the resource group and try again. Please use the same resource group as where your Azure Local nodes are"
58
58
return 1
@@ -91,7 +91,7 @@ After you stop an Arc VM, the start, restart, and delete buttons in the Azure po
91
91
92
92
#### Unable to view the network interface or read properties on an Arc VM
93
93
94
-
Viewing the network interface or properties on an Arc VM in the portal isn't supported in this release.
94
+
Viewing the network interface or properties on an Arc VM in the portal is unsupported in this preview release.
95
95
96
96
#### Portal showing unsaved change notification after updating VM size
97
97
@@ -122,7 +122,7 @@ ssh-keygen -t rsa
122
122
123
123
#### Update or scale a node pool from the portal is disabled
124
124
125
-
Updating or scaling a node pool from the portal is currently not supported.
125
+
Updating or scaling a node pool from the portal is unsupported in this preview release.
126
126
127
127
**Mitigation**: Use the CLI to update or scale a node pool.
128
128
@@ -151,13 +151,13 @@ Ignore the portal warning for this release.
151
151
152
152
When attempting to create a Kubernetes cluster with Entra authentication, you encounter an error.
153
153
154
-
**Mitigation**: Only local accounts with Kubernetes RBAC are supported in this preview.
154
+
**Mitigation**: Only local accounts with Kubernetes RBAC are supported in this preview release.
155
155
156
156
#### Arc extensions
157
157
158
158
When navigating to extensions on an AKS cluster the add button is disabled and there aren't any extensions listed.
159
159
160
-
Arc extensions are unsupported in this release.
160
+
Arc extensions are unsupported in this preview release.
161
161
162
162
#### AKS resource shows on portal after deletion
163
163
@@ -169,23 +169,23 @@ After successfully deleting an AKS cluster from portal the resource continues to
169
169
az aksarc delete
170
170
```
171
171
172
-
### Export Host Guardian Service certificates
172
+
####Export Host Guardian Service certificates
173
173
174
-
This feature isn't supported in this release.
174
+
This feature is unsupported in this preview release.
175
175
176
-
### Restart a node or the control plane VM
176
+
####Restart a node or the control plane VM
177
177
178
178
After you restart a node or the control plane VM, the system might take up to an hour to become fully ready. If you notice issues with the local portal, missing resources, or failed deployments, check the appliance health using the **OperationsModule** to confirm that all services are fully converged.
179
179
180
180
### Subscriptions
181
181
182
-
### Operator create subscription
182
+
####Operator create subscription
183
183
184
184
After you create a new subscription as an operator, the subscription appears in the list as non-clickable and displays ***no access*** for the owner.
185
185
186
186
**Mitigation**: Refresh your browser window.
187
187
188
-
### Operator subscriptions view (timeout)
188
+
####Operator subscriptions view (timeout)
189
189
190
190
If you're signed in as an operator, you might see a timeout screen and be unable to view, list, or create subscriptions.
191
191
@@ -225,9 +225,9 @@ When you select Sign-out, the request doesn't work.
225
225
226
226
#### Template specs
227
227
228
-
Template specs aren't supported in the preview release. Deployments that use ARM templates with template specs fail.
228
+
Template specs are unsupported in the preview release. Deployments that use ARM templates with template specs fail.
229
229
230
-
## Unsupported scenarios
230
+
###Unsupported scenarios
231
231
232
232
The following scenarios are unsupported in the preview release.
Copy file name to clipboardExpand all lines: azure-local/release-information-23h2.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: alkohli
5
5
ms.author: alkohli
6
6
ms.topic: article
7
7
ms.service: azure-local
8
-
ms.date: 07/22/2025
8
+
ms.date: 07/24/2025
9
9
---
10
10
11
11
# Azure Local release information
@@ -66,13 +66,13 @@ If your cluster supports [Solution Builder Extension software updates](./update/
66
66
The following tables summarize the release information for Azure Local across all supported versions. All dates are listed in ISO 8601 format: *YYYY-MM-DD*. After you upgrade your solution, you might see 10.x versions; these versions are supported.
67
67
68
68
> [!IMPORTANT]
69
-
> The new deployments of this software use the **12.2507.1001.8** build. You can also update an existing deployment from 2506 using **11.2507.1001.7**.
69
+
> The new deployments of this software use the **12.2507.1001.10** build. You can also update an existing deployment from 2506 using **11.2507.1001.9**.
0 commit comments