Skip to content

Commit f5b4582

Browse files
committed
Add TSG for cluster upgrade
1 parent 77cc6f9 commit f5b4582

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

AKS-Arc/tsg-aksarc-upgrade-issues.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ ms.reviewer: abha
1111

1212
# Troubleshoot the issue when the AKS Arc cluster is stuck in 'Upgrading' state
1313

14-
This article describes how to fix the issue when your AKS Arc cluster is stuck in 'Upgrading' state, when you try to upgrade the Kubernetes version on your cluster. This issue typically occurs after updating ASZ Local to version 2503 or 2504.
14+
This article describes how to fix the issue when your Azure Kubernetes Service enablied by Arc (AKS Arc) cluster is stuck in 'Upgrading' state, when you try to upgrade the Kubernetes version on your cluster. This issue typically occurs after updating Azure Local to version 2503 or 2504.
1515

1616
## Symptoms
1717

18-
When you try to upgrade an AKS Arc cluster, you notice that the **Current state** property of the cluster continues to show as 'Upgrading', as shown below:
18+
When you try to upgrade an AKS Arc cluster, you notice that the **Current state** property of the cluster continues to show as 'Upgrading'.
1919

2020
```output
2121
az aksarc upgrade --name "cluster-name" --resource-group "rg-name"
@@ -48,7 +48,7 @@ Upgrading the AKSArc cluster. This operation might take a while...
4848
## Possible causes and follow-ups
4949

5050
- The root cause is a recent change introduced in Azure Local version 2503. Under certain conditions, transient or intermittent failures during the Kubernetes upgrade process are not correctly detected or recovered from, leading the cluster state to remain indefinitely in the 'Upgrading' state.
51-
- You will hit this issue if the version of the AKS Arc extension on your custom location - the `hybridaksextension` extension's version is 2.1.211 or 2.1.223. You can run the following command to check the extension version on your cluster:
51+
- You hit this issue if the version of the AKS Arc extension on your custom location - the `hybridaksextension` extension's version is 2.1.211 or 2.1.223. You can run the following command to check the extension version on your cluster:
5252

5353
```azurecli
5454
az login --use-device-code --tenant <Azure tenant ID>
@@ -59,7 +59,7 @@ az k8s-extension show -g $res.HybridaksExtension.resourceGroup -c $res.ResourceB
5959

6060

6161
## Mitigation
62-
This issue can be resolved by invoking the AKS Arc update call. This will retrigger the upgrade flow as well. You can invoke the `aksarc update` command with some placeholder parameters. So in this case, you could invoke the update call to enable NFS or SMB drivers if those features are not already enabled. First, check whether any of the features enabled
62+
This issue can be resolved by invoking the AKS Arc update call. The `update` command will retrigger the upgrade flow as well. You can invoke the `aksarc update` command with some placeholder parameters. So in this case, you could invoke the update call to enable NFS or SMB drivers if those features are not already enabled. First, check whether any of the features enabled
6363

6464
```azurecli
6565
az login --use-device-code --tenant <Azure tenant ID>
@@ -73,6 +73,7 @@ Check the storage profile setion:
7373
"enabled": false
7474
},
7575
"smbCsiDriver": {
76+
7677
"enabled": true
7778
}
7879
}
@@ -91,10 +92,10 @@ Running the `aksarc update` command should resolve the issue and the `Current st
9192
az aksarc update --disable-smb-driver -g <resource_group_name> -n <cluster_name>
9293
az aksarc update --disable-nfs-driver -g <resource_group_name> -n <cluster_name>
9394
```
94-
If you find that both of the drivers are enabled on your cluster, you can disable the driver you are not using. If you are using both drivers, please contact the support team for further instructions.
95+
If both drivers are already enabled on your cluster, you can disable the one that is not in use. If you require both drivers to remain enabled, contact Microsoft Support for further assistance.
9596

9697
## Verification
97-
You can check that the K8s version upgrade has completed, and state has moved to Succeeded, by running the following command and checking for the **Current State** parameter in the JSON.
98+
Run the following command and check that the **Current State** parameter in the JSON output is set to 'Succeeded' to confirm the K8s version upgrade is complete.
9899

99100
```azurecli
100101
az aksarc show -g <resource_group> -n <cluster_name>

0 commit comments

Comments
 (0)