Skip to main content
Version: 2604 (Preview)

Task 05: Verify Azure Arc Connectivity

Runbook Azure Preview

DOCUMENT CATEGORY: Runbook SCOPE: Azure Arc verification PURPOSE: Confirm provisioned machines are Arc-connected and ready for cluster deployment MASTER REFERENCE: Microsoft Learn — Simplified Machine Provisioning

Status: Active


Overview

After provisioning completes, verify that all machines are connected to Azure Arc and show a "Ready to cluster" status. This confirms the machines are ready for Phase 05: Cluster Deployment.

Phase 04 Not Needed

When using simplified provisioning, Azure Arc registration is handled automatically during the provisioning process. You do not need to complete Phase 04: Arc Registration separately — it was done as part of the provisioning flow.


Step-by-Step

Step 1: Check Provisioned Machine Status in Azure Portal

  1. In the Azure portal, navigate to Azure ArcOperationsProvisioning (preview)
  2. Select the Provisioned machines tab
  3. Locate your machines in the list
  4. Verify each machine's status shows "Ready to cluster"

Step 2: Verify Arc Resource Details

For each machine, select the machine name to view detailed status:

CheckExpected Value
StatusReady to cluster
Azure Arc statusConnected
OSAzure Stack HCI
ExtensionsAll mandatory extensions installed

Step 3: Verify via Azure CLI (Optional)

# List Arc-connected machines in the resource group
az connectedmachine list \
--resource-group <resource-group-name> \
--query "[].{Name:name, Status:status, OS:osName}" \
-o table

Expected output: all machines show Connected status with Azure Stack HCI OS.


Validation

  • All machines show "Ready to cluster" in the provisioning portal
  • All machines show Connected in Azure Arc
  • All mandatory Azure Arc extensions are installed
  • Machine names match the Arc resource names configured in Task 03

Next Steps

With all machines verified:


Troubleshooting

IssueResolution
Machine status not "Ready to cluster"Check the machine's detailed status for error messages. Common causes: network connectivity issues, DNS resolution failures, or extension installation failures.
Machine shows "Disconnected" in Azure ArcVerify the machine has outbound internet access. Check firewall rules for required Azure Arc endpoints. Power cycle the machine if needed.
Missing Arc extensionsExtensions install automatically. Wait a few minutes and refresh. If still missing, check the machine's extension status in Azure Arc for error details.
Machine not visible in provisioning portalVerify the voucher was uploaded correctly in Task 03. Ensure the machine is in the correct resource group.

Task 04: Monitor Progress↑ Simplified ProvisioningPhase 05: Cluster Deployment →

VersionDateAuthorChanges
1.02026-05-01Azure Local CloudInitial release