Skip to content

Commit 4ad3801

Browse files
committed
Provides additional clarifty on how to identify the problem
1 parent 179ee02 commit 4ad3801

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

articles/operator-nexus/troubleshoot-accepted-cluster-hydration.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,33 +14,38 @@ ms.date: 10/30/2024
1414

1515
Operator Nexus relies on mirroring, or hydrating, resources from the on-premises cluster to Azure. When this process is interrupted, the Cluster resource can move to `Accepted`state.
1616

17-
## Prerequisites
17+
## Diagnosis
1818

19-
1. Install the latest version of the [appropriate CLI extensions](howto-install-cli-extensions.md)
20-
2. Collect the following information:
21-
- Subscription ID (SUBSCRIPTION)
22-
- Cluster name (CLUSTER)
23-
- Resource group (CLUSTER_RG)
24-
- Managed resource group (CLUSTER_MRG)
25-
3. Request subscription access to run Azure Operator Nexus network fabric (NF) and network cloud (NC) CLI extension commands.
26-
4. Sign In to Azure CLI and select the subscription where the cluster is deployed.
19+
The Cluster status is viewed via the Azure portal or via Azure CLI.
20+
21+
```bash
22+
az networkcloud cluster show --resource-group <RESOURCE_GROUP> --name <CLUSTER_NAME>
23+
```
2724

2825
## Mitigation steps
2926

3027
### Triggering the resource sync
3128

3229

3330
1. From the Cluster resource page in the Azure portal, add a tag to the Cluster resource.
34-
2. In most cases, the resource moves out of the `Accepted` state.
31+
2. The resource moves out of the `Accepted` state.
3532

3633
```bash
3734
az login
3835
az account set --subscription <SUBSCRIPTION>
3936
az resource tag --tags exampleTag=exampleValue --name <CLUSTER> --resource-group <CLUSTER_RG> --resource-type "Microsoft.ContainerService/managedClusters"
4037
```
4138

39+
## Verification
40+
41+
After the tag is applied, the Cluster moves to `Running` state.
42+
43+
```bash
44+
az networkcloud cluster show --resource-group <RESOURCE_GROUP> --name <CLUSTER_NAME>
45+
```
46+
4247
If the Cluster resource maintains the state after a period of time, less than 5 minutes, contact Microsoft support.
4348

4449
## Further information
4550

46-
Learn more about [Azure Arc-enabled Kubernetes](/azure/azure-arc/kubernetes/overview).
51+
Learn more about how resources are hydrated with [Azure Arc-enabled Kubernetes](/azure/azure-arc/kubernetes/overview).

0 commit comments

Comments
 (0)