Skip to content

Commit d3be821

Browse files
authored
Merge release-local-2504 to main for release
Merge release-local-2504 to main for release
2 parents c72343a + 9459f85 commit d3be821

File tree

9 files changed

+339
-456
lines changed

9 files changed

+339
-456
lines changed

azure-local/docfx.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@
8686
},
8787
"fileMetadata": {
8888
"monikerRange": {
89-
"./*.md": ">=azloc-24082 || =azloc-previous",
90-
"./*.yml": ">=azloc-24082 || =azloc-previous"
89+
"./*.md": ">=azloc-2411 || =azloc-previous",
90+
"./*.yml": ">=azloc-2411 || =azloc-previous"
9191
}
9292
},
9393
"template": [],
9494
"groups": {
9595
"version-azlocal": {
96-
"moniker_range": ">=azloc-24082 || =azloc-previous",
96+
"moniker_range": ">=azloc-2411 || =azloc-previous",
9797
"dest": "azure-local"
9898
}
9999
}

azure-local/known-issues.md

Lines changed: 106 additions & 411 deletions
Large diffs are not rendered by default.

azure-local/manage/add-server.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to manage capacity on your Azure Local, version 23H2 syst
44
ms.topic: article
55
author: alkohli
66
ms.author: alkohli
7-
ms.date: 03/25/2025
7+
ms.date: 04/21/2025
88
---
99

1010
# Add a node on Azure Local
@@ -98,6 +98,9 @@ On the new node that you plan to add, follow these steps.
9898

9999
1. Install the operating system and required drivers on the new node that you plan to add. Follow the steps in [Install the Azure Stack HCI Operating System, version 23H2](../deploy/deployment-install-os.md).
100100

101+
>[!NOTE]
102+
> For versions 2503 and later, you'll need to use the OS image of the same solution as that running on the existing cluster. To get the OS image, contact Microsoft Support or OEM Support.
103+
101104
2. Register the node with Arc. Follow the steps in [Register with Arc and set up permissions](../deploy/deployment-arc-register-server-permissions.md).
102105

103106
> [!NOTE]

azure-local/manage/manage-arc-virtual-machine-resources.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,41 @@ Follow these steps in the Azure portal for your Azure Local instance:
7272

7373
---
7474

75+
## Expand a data disk
76+
77+
You can expand an existing data disk to your desired size using Azure CLI.
78+
79+
>[!NOTE]
80+
>
81+
>- The size you're changing the data disk to can't be the same or less than the original size of the data disk.
82+
>- The maximum size the disk can expand to depends on the storage capacity of the cluster. Hyper-V also imposes a VHD max of 2TB and VHDx max of 64TB.
83+
84+
To expand the size of your data disk using Azure CLI, run the following command:
85+
86+
```azurecli
87+
az stack-hci-vm disk update --name $name --resource-group $resource_group --size-gb $size_in_gb
88+
```
89+
90+
Here's a sample output that indicates successful resizing of the data disk:
91+
92+
```Output
93+
{
94+
"endTime": "2025-03-17T17:55:49.3271204Z",
95+
"error": {},
96+
"extendedLocation": null,
97+
"id": "/providers/Microsoft.AzureStackHCI/locations/EASTUS2EUAP/operationStatuses/00000000-0000-0000-0000-000000000000*0000000000000000000000000000000000000000000000000000000000000000",
98+
"location": null,
99+
"name": "00000000-0000-0000-0000-000000000000*0000000000000000000000000000000000000000000000000000000000000000",
100+
"properties": null,
101+
"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupName/providers/Microsoft.AzureStackHCI/virtualHardDisks/dataDiskName",
102+
"startTime": "2025-03-17T17:55:25.8868586Z",
103+
"status": "Succeeded",
104+
"systemData": null,
105+
"tags": null,
106+
"type": null
107+
}
108+
```
109+
75110
## Delete a data disk
76111

77112
Follow these steps in the Azure portal for your Azure Local instance:

azure-local/manage/repair-server.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,10 @@ Follow these steps on the node you're trying to repair.
123123
:::image type="content" source="./media/repair-server/delete-machine-node-resource-1.png" alt-text="Screenshot of deletion of faulty Azure Arc machine node." lightbox="./media/repair-server/delete-machine-node-resource-1.png":::
124124

125125
1. Install the operating system and required drivers on the node you wish to repair. Follow the steps in [Install the Azure Stack HCI Operating System, version 23H2](../deploy/deployment-install-os.md).
126-
126+
127127
> [!NOTE]
128-
> If you deployed your Azure Local instance using custom storage IPs, you must manually assign IPs to the storage network adapters after the node is repaired.
128+
> - For versions 2503 and later, you'll need to use the OS image of the same solution as that running on the existing cluster. To get the OS image, contact Microsoft Support or OEM Support.
129+
> - If you deployed your Azure Local instance using custom storage IPs, you must manually assign IPs to the storage network adapters after the node is repaired.
129130
130131
1. Register the node with Arc. Follow the steps in [Register with Arc and set up permissions](../deploy/deployment-arc-register-server-permissions.md).
131132

-21.4 KB
Loading

azure-local/release-information-23h2.md

Lines changed: 36 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: alkohli
55
ms.author: alkohli
66
ms.topic: conceptual
77
ms.service: azure-local
8-
ms.date: 03/31/2025
8+
ms.date: 04/21/2025
99
---
1010

1111
# Azure Local release information
@@ -20,67 +20,82 @@ To keep your Azure Local solution in a supported state, you have up to six month
2020

2121
This article provides the release information for Azure Local, including the release build and OS build information.
2222

23-
[!INCLUDE [azure-local-banner-new-releases](includes/azure-local-banner-new-releases.md)]
24-
2523
## About Azure Local releases
2624

27-
The Azure Local includes multiple release trains: 2402, 2405, 2408, 2411, and 2503. Each release train includes a feature build and subsequent cumulative updates.
25+
The Azure Local includes multiple release trains: 2408, 2411, 2503, and 2504. Each release train includes a feature build and subsequent cumulative updates.
2826

2927
- **Feature build**: The feature update build is the initial version of the software in a release train. Feature releases go beyond quality and security fixes, incorporating product enhancements, including updates for Azure Local services and agents.
3028

3129
- **Cumulative build**: A cumulative update build includes the incremental updates from the most recent feature build.
3230

33-
- **Baseline release**: A version that is available to be installed directly as part of a fresh deployment. Starting with 2408.0, every release (both feature and cumulative builds) is a baseline release.
34-
3531
The following diagram illustrates the release trains, their associated feature builds, and update paths.
3632

3733
:::image type="content" source="./media/release-information-23h2/release-trains-supported-update-paths.png" alt-text="Diagram illustrating Azure Local release trains with supported update paths."lightbox="./media/release-information-23h2/release-trains-supported-update-paths.png":::
3834

3935
#### Move to the next release train
4036

41-
Follow these guidelines to move to the next release train:
37+
Follow these guidelines to skip releases with the same release train as you move to the next release train:
4238

4339
- Update the existing deployment to a build that allows you to move to the next release train. The following table provides examples of how to move between release trains:
4440

45-
| Update scenario | Timeframe | Update path |
46-
|-----------------------|---------------------|--------------------------------------------------|
47-
| From 2402 to 2405 | May 2024 | 2402 --> 2402.3 --> 2405 |
48-
| From 2402 to 2405.1 | June 2024 or later | 2402 --> 2402.4 --> 2405.1 |
49-
| From 2402.3 to 2408.2 | August 2024 | 2402.3 --> 2405.0 --> 2405.3 --> 2408 --> 2408.2 |
41+
| Update scenario | Update path |
42+
|-----------------------|-----------------------------------------|
43+
| From 2408 to 2411 | 2408 --> 2408.2 --> 2411 |
44+
| From 2411 to 2503 | 2411 --> 2411.2 --> 2411.3 --> 2503 |
45+
46+
<!-- Update the 2503 train to 2504 or create a new deployment.-->
5047

5148
#### Move within the same release train
5249

53-
Follow these guidelines to move within the same release train:
50+
Follow these guidelines to update to each release within your current release train:
5451

55-
- Within your release train, you can update to the latest update build anytime. For example, if you're running the 2405 feature build, you can update to any of the 2405 cumulative update builds, such as 2405.1, 2405.2, or 2405.3.
52+
- Within your release train, you can update to the latest update build anytime. For example, if you're running the 2411 feature build, you can update to any of the 2411 cumulative update builds, such as 2411.1, 2411.2, or 2411.3.
5653

57-
- To keep your Azure Local instance in a supported state, you have up to six months to install updates. For example, if you're running the 2405 feature build, update to a later build within six months.
54+
| Timeframe for 2411 release train | Update path |
55+
|--------------------------------------|-------------------|
56+
| Nov 2024 | 2411 --> 2411.1 |
57+
| December 2024 or later | 2411.1 --> 2411.2 |
58+
| February 2024 | 2411.2 --> 2411.3 |
59+
60+
- To keep your Azure Local instance in a supported state, you have up to six months to install updates. For example, if you're running the 2408 feature build, update to a later build within six months.
5861

5962
## Azure Local release information summary
6063

6164
### Supported versions of Azure Local
6265

63-
The following table summarizes the release information for Azure Local across all supported versions. All dates are listed in ISO 8601 format: *YYYY-MM-DD*
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*.
67+
68+
<!--Starting in 2504, we offer two releases. One release provides the path to upgrade from 2503 to 2504. The other release supports a new deployment of 2504.-->
69+
70+
<!--#### [Existing deployment](#tab/existing-deployment)-->
6471

6572
|Version| OS Build |Security update| What's new | Known issues |
6673
|------|-------|---------------|------------|--------------|
74+
| 11.2504.1001.19 <br><br> Availability date: 2025-04-21 | 25398.1551 | [April OS security update](security-update/security-update.md?view=azloc-2504&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2504&preserve-view=true#features-and-improvements-in-2504) | [Known issues](./known-issues.md?view=azloc-2504&preserve-view=true) |
6775
| 10.2503.0.13 <br><br> Availability date: 2025-03-31 | 25398.1486 | [March OS security update](security-update/security-update.md?view=azloc-2503&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2503&preserve-view=true#features-and-improvements-in-2503) | [Known issues](./known-issues.md?view=azloc-2503&preserve-view=true) |
6876
| 10.2411.3.2 <br><br> Availability date: 2025-02-20 | 25398.1425 | [February OS security update](security-update/security-update.md?view=azloc-24113&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-24113&preserve-view=true#features-and-improvements-in-24113) | [Known issues](./known-issues.md?view=azloc-24113&preserve-view=true) |
6977
| 10.2411.2.12 <br><br> Availability date: 2025-02-10 | 25398.1369 | [January OS security update](security-update/security-update.md?view=azloc-24112&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-24112&preserve-view=true#features-and-improvements-in-24112) | [Known issues](./known-issues.md?view=azloc-24112&preserve-view=true) |
7078
| 10.2411.1.10 <br><br> Availability date: 2024-12-17 | 25398.1308 | [December OS security update](security-update/security-update.md?view=azloc-24111&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-24111&preserve-view=true#features-and-improvements-in-24111) | [Known issues](./known-issues.md?view=azloc-24111&preserve-view=true) |
7179
| 10.2411.0.24 <br><br> Availability date: 2024-11-26 | 25398.1251 | [November OS security update](security-update/security-update.md?view=azloc-2411&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2411&preserve-view=true#features-and-improvements-in-2411) | [Known issues](./known-issues.md?view=azloc-2411&preserve-view=true) |
7280
| 10.2411.0.22 <br><br> Availability date: 2024-11-14 | 25398.1251 | [November OS security update](security-update/security-update.md?view=azloc-2411&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2411&preserve-view=true#features-and-improvements-in-2411) | [Known issues](./known-issues.md?view=azloc-2411&preserve-view=true) |
73-
| 10.2408.2.7 <br><br> Availability date: 2024-10-23 | 25398.1189 | [October OS Security update](security-update/security-update.md?view=azloc-24082&preserve-view=true) |[Features and improvements](./whats-new.md?view=azloc-24082&preserve-view=true#features-and-improvements-in-24082) | [Known issues](./known-issues.md?view=azloc-24082&preserve-view=true) |
74-
| 10.2408.1.9 <br><br> Availability date: 2024-09-25 | 25398.1128 | [September OS Security update](security-update/security-update.md?view=azloc-24081&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-24081&preserve-view=true#features-and-improvements-in-24081) | [Known issues](./known-issues.md?view=azloc-24081&preserve-view=true) |
75-
| 10.2408.0.29 <br><br> Availability date: 2024-09-05 | 25398.1085 | [August OS security update](security-update/security-update.md?view=azloc-2408&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2408&preserve-view=true#features-and-improvements-in-2408) | [Known issues](./known-issues.md?view=azloc-2408&preserve-view=true) |
76-
| 10.2405.3.7 <br><br> Availability date: 2024-08-20 | 25398.1085 | [August OS security update](security-update/security-update.md?view=azloc-previous&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-previous&preserve-view=true#features-and-improvements-in-24053) | [Known issues](./known-issues.md?view=azloc-previous&preserve-view=true) |
81+
82+
<!--#### [New deployment](#tab/new-deployment)
83+
84+
|Version| OS Build |Security update| What's new | Known issues |
85+
|------|-------|---------------|------------|--------------|
86+
| 12.2504 <br><br> Availability date: 2025-04-23 | 26100.3775 | [April OS security update](security-update/security-update.md?view=azloc-2504&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2504&preserve-view=true#features-and-improvements-in-2504) | [Known issues](./known-issues.md?view=azloc-2504&preserve-view=true) | -->
87+
7788

7889
### Older versions of Azure Local
7990

8091
The following table summarizes the release information for Azure Local across older versions.
8192

8293
|Version| OS Build |Security update| What's new | Known issues |
8394
|------|-------|---------------|------------|--------------|
95+
| 10.2408.2.7 <br><br> Availability date: 2024-10-23 | 25398.1189 | [October OS Security update](security-update/security-update.md?view=azloc-24082&preserve-view=true) |[Features and improvements](./whats-new.md?view=azloc-24082&preserve-view=true#features-and-improvements-in-24082) | [Known issues](./known-issues.md?view=azloc-24082&preserve-view=true) |
96+
| 10.2408.1.9 <br><br> Availability date: 2024-09-25 | 25398.1128 | [September OS Security update](security-update/security-update.md?view=azloc-24081&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-24081&preserve-view=true#features-and-improvements-in-24081) | [Known issues](./known-issues.md?view=azloc-24081&preserve-view=true) |
97+
| 10.2408.0.29 <br><br> Availability date: 2024-09-05 | 25398.1085 | [August OS security update](security-update/security-update.md?view=azloc-2408&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-2408&preserve-view=true#features-and-improvements-in-2408) | [Known issues](./known-issues.md?view=azloc-2408&preserve-view=true) |
98+
| 10.2405.3.7 <br><br> Availability date: 2024-08-20 | 25398.1085 | [August OS security update](security-update/security-update.md?view=azloc-previous&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-previous&preserve-view=true#features-and-improvements-in-24053) | [Known issues](./known-issues.md?view=azloc-previous&preserve-view=true) |
8499
| 10.2405.2.7 <br><br> Availability date: 2024-07-16 | 25398.1009 | [July OS security update](security-update/security-update.md?view=azloc-previous&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-previous&preserve-view=true#features-and-improvements-in-24052) | [Known issues](./known-issues.md?view=azloc-previous&preserve-view=true) |
85100
| 10.2405.1.4 <br><br> Availability date: 2024-06-19 | 25398.950 | [June OS security update](security-update/security-update.md?view=azloc-previous&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-previous&preserve-view=true#features-and-improvements-in-24051) | [Known issues](./known-issues.md?view=azloc-previous&preserve-view=true) |
86101
| 10.2402.4.4 <br><br> Availability date: 2024-06-19 | 25398.950 | [June OS security update](security-update/security-update.md?view=azloc-previous&preserve-view=true) | [Features and improvements](./whats-new.md?view=azloc-previous&preserve-view=true#features-and-improvements-in-24024) | [Known issues](./known-issues.md?view=azloc-previous&preserve-view=true) |
@@ -96,4 +111,4 @@ The following table summarizes the release information for Azure Local across ol
96111

97112
## Next steps
98113

99-
- [What's new for Azure Local](./whats-new.md)
114+
- [What's new for Azure Local](./whats-new.md)

0 commit comments

Comments
 (0)