Skip to content

Commit d03abb6

Browse files
author
Manika Dhiman
committed
Merge branch 'main' into md-compare-arc-vms
2 parents 88e49da + ddc9887 commit d03abb6

File tree

47 files changed

+1246
-1190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1246
-1190
lines changed

.openpublishing.publish.config.json

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
{
22
"docsets_to_publish": [
3+
{
4+
"docset_name": "adaptive-cloud",
5+
"build_source_folder": "adaptive-cloud",
6+
"build_output_subfolder": "adaptive-cloud",
7+
"locale": "en-us",
8+
"monikers": [],
9+
"open_to_public_contributors": false,
10+
"type_mapping": {
11+
"Conceptual": "Content"
12+
},
13+
"build_entry_point": "docs"
14+
},
315
{
416
"docset_name": "AKS-Hybrid",
517
"build_source_folder": "AKS-Arc",
@@ -16,31 +28,31 @@
1628
"template_folder": "_themes"
1729
},
1830
{
19-
"docset_name": "AzureLocal",
20-
"build_source_folder": "azure-local",
21-
"build_output_subfolder": "AzureLocal",
31+
"docset_name": "azure-managed-lustre",
32+
"build_source_folder": "azure-managed-lustre",
33+
"build_output_subfolder": "azure-managed-lustre",
2234
"locale": "en-us",
2335
"monikers": [],
2436
"moniker_ranges": [],
2537
"open_to_public_contributors": true,
2638
"type_mapping": {
2739
"Conceptual": "Content"
2840
},
29-
"build_entry_point": "docs"
41+
"build_entry_point": "docs",
42+
"template_folder": "_themes"
3043
},
3144
{
32-
"docset_name": "azure-managed-lustre",
33-
"build_source_folder": "azure-managed-lustre",
34-
"build_output_subfolder": "azure-managed-lustre",
45+
"docset_name": "AzureLocal",
46+
"build_source_folder": "azure-local",
47+
"build_output_subfolder": "AzureLocal",
3548
"locale": "en-us",
3649
"monikers": [],
3750
"moniker_ranges": [],
3851
"open_to_public_contributors": true,
3952
"type_mapping": {
4053
"Conceptual": "Content"
4154
},
42-
"build_entry_point": "docs",
43-
"template_folder": "_themes"
55+
"build_entry_point": "docs"
4456
},
4557
{
4658
"docset_name": "AzureStack",

AKS-Arc/ssh-connect-to-windows-and-linux-worker-nodes.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: Connect to Windows or Linux worker nodes with SSH
33
description: Learn how to use SSH to connect to Windows or Linux worker nodes in an AKS Arc cluster.
44
ms.date: 01/10/2025
@@ -31,14 +31,22 @@ This article explains how to use SSH to connect to both Windows and Linux nodes.
3131
kubectl --kubeconfig /path/to/aks-cluster-kubeconfig get nodes -o wide |
3232
```
3333

34-
1. Run `ssh cloud@<IP address of the node>` to connect to a worker node:
34+
1. Run `ssh` to connect to a worker node:
3535

3636
> [!NOTE]
3737
> You must pass the correct location to your SSH private key. The following example uses the default location of **~/.ssh/id_rsa**, but you might need to change this location if you requested a different path. To change the location, see [Configure SSH keys](configure-ssh-keys.md) to specify the `--ssh-key-value` parameter when you create an AKS Arc cluster.
3838
39+
For a Linux worker node, run the following command:
40+
3941
```azurecli
4042
ssh -i $env:USERPROFILE\.ssh\id_rsa clouduser@<IP address of the node>
4143
```
44+
45+
For a Windows worker node, run the following command:
46+
47+
```azurecli
48+
ssh -i $env:USERPROFILE\.ssh\id_rsa Administrator@<IP address of the node>
49+
```
4250

4351
If you encounter SSH login issues, verify that your IP address is included in the **--ssh-auth-ip list**. To check this list, run `az aksarc show --name "$<aks_cluster_name>" --resource-group "$<resource_group_name>"` and look for `authorizedIpRanges` under `clusterVmAccessProfile`.
4452

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
Welcome to the open source [documentation for Azure Stack](https://learn.microsoft.com/azure-stack). Azure Stack is a portfolio of products that extend Azure services and capabilities to your environment of choice—from the datacenter to edge locations and remote offices. Azure Stack portfolio includes the following products:
44

5+
- Azure Local
56
- Azure Stack HCI
67
- Azure Kubernetes Service (AKS) enabled by Azure Arc
78
- Azure Stack Hub
9+
- Azure Managed Lustre File System
810

911
## Contribute to the Azure Stack documentation
1012

adaptive-cloud/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: Index
2+
href: index.md
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- name: '<please enter product name here>'
2+
tocHref: /
3+
topicHref: /

adaptive-cloud/docfx.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"build": {
3+
"content": [
4+
{
5+
"files": [
6+
"**/*.md",
7+
"**/*.yml"
8+
],
9+
"exclude": [
10+
"**/obj/**",
11+
"**/includes/**",
12+
"_themes/**",
13+
"**/docfx.json",
14+
"_repo.en-us/**",
15+
"README.md",
16+
"LICENSE",
17+
"LICENSE-CODE",
18+
"ThirdPartyNotices.md",
19+
"SECURITY.md"
20+
]
21+
}
22+
],
23+
"resource": [
24+
{
25+
"files": [
26+
"**/*.png",
27+
"**/*.jpg"
28+
],
29+
"exclude": [
30+
"**/obj/**",
31+
"**/includes/**",
32+
"_themes/**",
33+
"**/docfx.json",
34+
"_repo.en-us/**"
35+
]
36+
}
37+
],
38+
"overwrite": [],
39+
"externalReference": [],
40+
"globalMetadata": {
41+
"breadcrumb_path": "~/breadcrumb/adaptive-cloud/toc.yml",
42+
"feedback_system": "Standard",
43+
"permissioned-type": "public"
44+
},
45+
"fileMetadata": {},
46+
"template": []
47+
}
48+
}

adaptive-cloud/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Welcome to adaptive-cloud!

azure-local/concepts/billing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: jasongerend
55
ms.author: jgerend
66
ms.topic: conceptual
77
ms.service: azure-local
8-
ms.date: 11/01/2024
8+
ms.date: 01/28/2025
99
---
1010

1111
# Azure Local billing and payment
@@ -39,7 +39,7 @@ To manually upload core data to Azure, use the **`Sync-AzureStackHCI`** cmdlet.
3939

4040
## FAQ
4141

42-
- If I already have an Azure subscription, can I use it for Azure Local **Yes**
42+
- If I already have an Azure subscription, can I use it for Azure Local? **Yes**
4343
- If my organization's finance department already approved spending on Azure, does that cover Azure Local? **Yes**
4444
- If I have an Azure commitment to spend, can I use that toward Azure Local? **Yes**
4545
- If I have Azure credits (for example, for students, or awarded as a prize) can I use that toward Azure Local? **Yes**

azure-local/faq.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
author: cosmosdarwin
77
ms.author: cosdar
88
ms.service: azure-local
9-
ms.date: 11/13/2024
9+
ms.date: 02/03/2025
1010
title: Azure Local FAQ
1111
summary: The Azure Local FAQ provides information about Azure Local connectivity with the cloud, and how Azure Local relates to Windows Server.
1212

@@ -125,5 +125,5 @@ sections:
125125
```
126126
- question: How long is Azure Local, version 22H2 supported?
127127
answer: |
128-
Azure Local, version 22H2 will reach end of service by May 2025. After that, you won't receive monthly security and quality updates that provide protection from the latest security threats. To continue receiving updates, we recommend updating your operating system to [version 23H2](./upgrade/upgrade-22h2-to-23h2-powershell.md).
128+
Azure Stack HCI, version 22H2 will reach end of support on May 31, 2025. After this date, you won't receive monthly security and quality updates. Support requests (SR) will only be available when performing an operating system upgrade. To continue receiving updates, we recommend that you upgrade your operating system to [version 23H2](./upgrade/upgrade-22h2-to-23h2-powershell.md).
129129
If you're currently running an Azure Local, version 22H2 stretch cluster or managing Azure Local via System Center - Virtual Machine Manager, review the [Supported workloads and configurations](./upgrade/about-upgrades-23h2.md#supported-workloads-and-configurations) table for update timelines.

azure-local/includes/end-of-service-22h2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ author: alkohli
33
ms.author: alkohli
44
ms.service: azure-local
55
ms.topic: include
6-
ms.date: 01/08/2025
6+
ms.date: 02/03/2025
77
ms.reviewer: alkohli
88
---
99

1010
> [!IMPORTANT]
11-
> Azure Stack HCI, version 22H2 will reach end of service by May 2025. After that, you won't receive monthly security and quality updates that provide protection from the latest security threats. To continue receiving updates, we recommend updating your operating system to [version 23H2](../upgrade/upgrade-22h2-to-23h2-powershell.md).
11+
> Azure Stack HCI, version 22H2 will reach end of support on May 31, 2025. After this date, you won't receive monthly security and quality updates. Support requests (SR) will only be available when performing an operating system upgrade. To continue receiving updates, we recommend that you upgrade your operating system to [version 23H2](../upgrade/upgrade-22h2-to-23h2-powershell.md).
1212
>
1313
> If you're currently running an Azure Stack HCI, version 22H2 stretch cluster or managing Azure Local via System Center - Virtual Machine Manager, review the [Supported workloads and configurations](../upgrade/about-upgrades-23h2.md#supported-workloads-and-configurations) table for update timelines.

0 commit comments

Comments
 (0)