Skip to content

Commit 970aa16

Browse files
Merge pull request #3539 from MicrosoftDocs/main638763805227194846sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 82f6f8e + 1df5a0f commit 970aa16

File tree

60 files changed

+468
-390
lines changed

Some content is hidden

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

60 files changed

+468
-390
lines changed

.openpublishing.redirection.aks.json

Lines changed: 277 additions & 272 deletions
Large diffs are not rendered by default.

AKS-Arc/TOC.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
href: kubernetes-monitor-metrics.md
145145
- name: Troubleshooting
146146
items:
147-
- name: Troubleshoot & known issues
147+
- name: Troubleshoot and known issues
148148
href: aks-troubleshoot.md
149149
- name: Control plane configuration validation errors
150150
href: control-plane-validation-errors.md
@@ -157,11 +157,15 @@
157157
- name: KubeAPIServer unreachable error
158158
href: kube-api-server-unreachable.md
159159
- name: Can't see VM SKUs on Azure portal
160-
href: tsg-check-vm-sku.md
160+
href: check-vm-sku.md
161161
- name: Deleted AKS Arc cluster still visible on Azure portal
162162
href: deleted-cluster-visible.md
163163
- name: Can't fully delete AKS Arc cluster with PodDisruptionBudget (PDB) resources
164164
href: delete-cluster-pdb.md
165+
- name: Azure Advisor upgrade recommendation
166+
href: azure-advisor-upgrade.md
167+
- name: Issues after deleting storage volumes
168+
href: delete-storage-volume.md
165169
- name: Reference
166170
items:
167171
- name: Azure CLI

AKS-Arc/aks-troubleshoot.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot common issues in AKS enabled by Azure Arc
33
description: Learn about common issues and workarounds in AKS enabled by Arc.
44
ms.topic: how-to
55
author: sethmanheim
6-
ms.date: 11/22/2024
6+
ms.date: 02/28/2025
77
ms.author: sethm
88
ms.lastreviewed: 02/27/2024
99
ms.reviewer: guanghu
@@ -12,22 +12,27 @@ ms.reviewer: guanghu
1212

1313
# Troubleshoot common issues in AKS enabled by Azure Arc
1414

15-
This article describes how to find solutions for issues you encounter when using AKS enabled by Azure Arc. Known issues and errors are organized by functional area. You can use the links provided in this article to find solutions and workarounds to resolve them.
15+
This section describes how to find solutions for issues you encounter when using AKS enabled by Azure Arc.
1616

1717
## Open a support request
1818

19-
See the [Get support](/azure/aks/hybrid/help-support?tabs=aksee) article for information about how to use the Azure portal to get support or open a support request for AKS Arc.
19+
To open a support request, see the [Get support](/azure/aks/hybrid/help-support) article for information about how to use the Azure portal to get support or open a support request for AKS Arc.
2020

21-
## Upgrade
21+
## Known issues
2222

23-
### Azure Advisor upgrade recommendation
23+
The following sections describe known issues and workarounds for AKS enabled by Azure Arc:
2424

25-
If you continually see an [Azure Advisor](/azure/advisor/) upgrade recommendation that says "Upgrade to the latest version of AKS enabled by Azure Arc," follow these steps to disable the recommendation:
26-
27-
- Ensure that you update your Azure Local solution to the latest version. For more information, see [About updates for Azure Local, version 23H2](/azure-stack/hci/update/about-updates-23h2).
28-
- If you use any of the Azure SDKs, ensure that you're using the latest version of that SDK. You can find the Azure SDKs by searching for "HybridContainerService" on the [Azure SDK releases](https://azure.github.io/azure-sdk/) page.
25+
- [Control plane configuration validation errors](control-plane-validation-errors.md)
26+
- [Connectivity issues with MetalLB](load-balancer-issues.md)
27+
- [K8sVersionValidation error](cluster-k8s-version.md)
28+
- [Use diagnostic checker](aks-arc-diagnostic-checker.md)
29+
- [KubeAPIServer unreachable error](kube-api-server-unreachable.md)
30+
- [Can't see VM SKUs on Azure portal](check-vm-sku.md)
31+
- [Deleted AKS Arc cluster still visible on Azure portal](deleted-cluster-visible.md)
32+
- [Can't fully delete AKS Arc cluster with PodDisruptionBudget (PDB) resources](delete-cluster-pdb.md)
33+
- [Azure Advisor upgrade recommendation message](azure-advisor-upgrade.md)
34+
- [Issues after deleting storage volume](delete-storage-volume.md)
2935

3036
## Next steps
3137

32-
- [Troubleshoot K8sVersionValidation error](cluster-k8s-version.md)
33-
- [Use diagnostic checker](aks-arc-diagnostic-checker.md)
38+
[What is AKS enabled by Azure Arc?](aks-overview.md)

AKS-Arc/azure-advisor-upgrade.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Azure Advisor upgrade recommendation
3+
description: Learn how to disable Azure Advisor upgrade recommendation alerts.
4+
author: sethmanheim
5+
ms.author: sethm
6+
ms.topic: troubleshooting
7+
ms.date: 02/28/2025
8+
9+
---
10+
11+
# Azure Advisor upgrade recommendation
12+
13+
This article describes how to disable recurring Azure Advisor upgrade recommendation alerts for AKS enabled by Azure Arc.
14+
15+
## Symptoms
16+
17+
You continually see an Azure Advisor upgrade recommendation that says **Upgrade to the latest version of AKS enabled by Azure Arc**.
18+
19+
## Workaround
20+
21+
Follow these steps to disable the recommendation:
22+
23+
- Ensure that you update your Azure Local solution to the latest version. For more information, see [About updates for Azure Local, version 23H2](/azure-stack/hci/update/about-updates-23h2).
24+
- If you use any of the Azure SDKs, ensure that you're using the latest version of that SDK. You can find the Azure SDKs by searching for "HybridContainerService" on the [Azure SDK releases](https://azure.github.io/azure-sdk/) page.
25+
26+
## Next steps
27+
28+
[Troubleshoot issues in AKS enabled by Azure Arc](aks-troubleshoot.md)

AKS-Arc/tsg-check-vm-sku.md renamed to AKS-Arc/check-vm-sku.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Troubleshoot no VM sizes listed on Azure portal
3-
description: Learn how to troubleshoot no VM sizes listed on Azure portal when you create an AKS Arc cluster
3+
description: Learn how to troubleshoot no VM sizes listed on Azure portal when you create an AKS Arc cluster.
44
ms.topic: troubleshooting
55
author: sethmanheim
66
ms.author: sethm
@@ -9,7 +9,7 @@ ms.reviewer: sumsmith
99

1010
---
1111

12-
# Troubleshoot no VM sizes listed on Azure portal when you create an AKS Arc cluster
12+
# No VM sizes listed on Azure portal when you create an AKS Arc cluster
1313

1414
When you try to create an AKS Arc cluster from the Azure portal, you can see that there are no VM sizes listed. This can happen if the **skus/default** resource in Azure is not yet created, or was deleted for some reason. This scenario can happen in Azure Local releases 2408 or older, when the default resource was not created as a part of the Azure Local deployment.
1515

AKS-Arc/control-plane-validation-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Control plane configuration validation errors
33
description: Learn details about each control plane configuration validation error.
44
author: sethmanheim
55
ms.author: sethm
6-
ms.topic: concept-article
6+
ms.topic: troubleshooting
77
ms.date: 02/26/2025
88

99
---

AKS-Arc/delete-storage-volume.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: AKS on Azure Local issues after deleting storage volumes
3+
description: Learn how to mitigate issues after deleting storage volumes.
4+
author: sethmanheim
5+
ms.author: sethm
6+
ms.topic: troubleshooting
7+
ms.date: 02/28/2025
8+
9+
---
10+
11+
# AKS on Azure Local issues after deleting storage volumes
12+
13+
This article describes how to mitigate cluster issues if a storage volume is deleted.
14+
15+
## Symptoms
16+
17+
AKS Arc workload data is stored on Azure Local storage volumes, including the AKS Arc node disks and persistent volumes of data disks. If the storage volume is accidentally deleted, the AKS Arc cluster doesn't work properly, as its data is removed as well.
18+
19+
## Workaround
20+
21+
To manage storage volumes on Azure Local, follow these steps:
22+
23+
- Ensure that you deleted all the storage path(s) that are created on that storage volume. Deleting storage paths raises an alert to indicate the workload that was stored on it. To delete the storage path, see [Delete a storage path](/azure/azure-local/manage/create-storage-path?view=azloc-24112&preserve-view=true&tabs=azurecli#delete-a-storage-path).
24+
- If you have an AKS Arc cluster that must be deleted, see [Delete the AKS Arc cluster](aks-create-clusters-cli.md#delete-the-cluster).
25+
26+
## Next steps
27+
28+
[Troubleshoot issues in AKS enabled by Azure Arc](aks-troubleshoot.md)

AKS-Arc/load-balancer-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Intermittent connectivity issues with MetalLB or Kubernetes services of t
33
description: Learn how to mitigate connection issues with MetalLB or Kubernetes services of type Load Balancer.
44
author: sethmanheim
55
ms.author: sethm
6-
ms.topic: concept-article
6+
ms.topic: troubleshooting
77
ms.date: 02/26/2025
88

99
---

adaptive-cloud/docfx.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"breadcrumb_path": "/azure/adaptive-cloud/breadcrumb/toc.json",
4545
"feedback_system": "Standard",
4646
"permissioned-type": "public",
47+
"manager":"lizross",
4748
"ms.service": "azure-stack",
4849
"tittleSuffix": "Azure Adaptive Cloud",
4950
"feedback_product_url": "https://feedback.azure.com/d365community/forum/5c778dec-0625-ec11-b6e6-000d3a4f0858",

azure-local/concepts/data-collection.md

Lines changed: 9 additions & 9 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: 04/24/2023
8+
ms.date: 02/27/2025
99
---
1010

1111
# Azure Stack HCI data collection
@@ -14,20 +14,20 @@ ms.date: 04/24/2023
1414

1515
[!INCLUDE [azure-local-banner-22h2](../includes/azure-local-banner-22h2.md)]
1616

17-
This topic describes required data collected to keep Azure Stack HCI secure, up to date, and working as expected.
17+
This article describes required data collected to keep Azure Stack HCI secure, up to date, and working as expected.
1818

19-
Customer data, including the names, metadata, configuration, and contents of your on-premises virtual machines (VMs) is never sent to the cloud unless you turn on additional services like Azure Backup or Azure Site Recovery, or unless you enroll those VMs individually into cloud management services like Azure Arc.
19+
Customer data, including the names, metadata, configuration, and contents of your on-premises virtual machines (VMs) is never sent to the cloud unless you turn on other services like Azure Backup or Azure Site Recovery, or unless you enroll those VMs individually into cloud management services like Azure Arc.
2020

21-
We do collect diagnostic data. The data described below is required for Microsoft to provide Azure Stack HCI. This data is collected once a day, and data collection events can be viewed in the event logs. Azure Stack HCI collects the minimum data required to keep your clusters up to date, secure, and operating properly.
21+
We do collect diagnostic data. The data described in the following section is required for Microsoft to provide Azure Stack HCI. This data is collected once a day, and data collection events can be viewed in the event logs. Azure Stack HCI collects the minimum data required to keep your clusters up to date, secure, and operating properly.
2222

2323
> [!IMPORTANT]
24-
> The data described below that Azure Stack HCI collects is independent from Windows diagnostic data, which can be configured for various levels of collection. In Azure Stack HCI, the default setting for Windows diagnostic data collection is Security (off), meaning that no Windows diagnostic data is sent unless the administrator changes the diagnostic data settings. For more information, see [Configure Windows diagnostic data in your organization](/windows/privacy/configure-windows-diagnostic-data-in-your-organization). Microsoft is an independent controller of any Windows diagnostic data collected in connection with Azure Stack HCI. Microsoft will handle the Windows diagnostic data in accordance with the [Microsoft Privacy Statement](https://privacy.microsoft.com/privacystatement).
24+
> The data described below that Azure Stack HCI collects is independent from Windows diagnostic data, which can be configured for various levels of collection. In Azure Stack HCI, the default setting for Windows diagnostic data collection is Security (off), meaning that no Windows diagnostic data is sent unless the administrator changes the diagnostic data settings. For more information, see [Configure Windows diagnostic data in your organization](/windows/privacy/configure-windows-diagnostic-data-in-your-organization). Microsoft is an independent controller of any Windows diagnostic data collected in connection with Azure Stack HCI. Microsoft handles the Windows diagnostic data in accordance with the [Microsoft Privacy Statement](https://privacy.microsoft.com/privacystatement).
2525
2626
## Data collection and residency
2727

2828
This Azure Stack HCI data:
2929

30-
- is not sent to Microsoft until the product is registered with Azure. When Azure Stack HCI is unregistered, this data collection stops.
30+
- isn't sent to Microsoft until the product is registered with Azure. When Azure Stack HCI is unregistered, this data collection stops.
3131
- is logged to the Microsoft-AzureStack-HCI/Analytic event channel.
3232
- is in JSON format, so that system administrators can examine and analyze the data being sent.
3333

@@ -43,14 +43,14 @@ To learn about how Microsoft stores diagnostic data in Azure, see [Data residenc
4343

4444
## Data retention
4545

46-
After Azure Stack HCI collects this data, it is retained for 90 days. Aggregated, de-identified data may be kept longer.
46+
After Azure Stack HCI collects this data, it's retained for 90 days. Aggregated, de-identified data may be kept longer.
4747

4848
## What data is collected?
4949

5050
Azure Stack HCI collects:
5151

5252
- Information about servers such as operating system version, processor model, number of processor cores, memory size, cluster identifier, and hash of hardware ID
53-
- List of installed Azure Stack HCI server features (e.g. BitLocker)
53+
- List of installed Azure Stack HCI server features (for example, BitLocker)
5454
- Information necessary to compute the reliability of the Azure Stack HCI operating system
5555
- Information necessary to compute the reliability of the health collection data
5656
- Information gathered from the event log for specific errors, such as update download failed
@@ -97,7 +97,7 @@ Azure Stack HCI collects:
9797
}
9898
}
9999
```
100-
100+
101101
The output should look something like this:
102102

103103
```shell

0 commit comments

Comments
 (0)