Missing Extensions After Arc Registrations

Stack Admin 0 Reputation points
2024-05-02T15:18:03.9666667+00:00

Hello,

At the early stages of deploying a new cluster.

Towards the end of Step 4 from: https://video2.skills-academy.com/en-us/azure-stack/hci/deploy/deployment-arc-register-server-permissions?tabs=powershell

The servers are registered and appear in Azure Portal. However, when checking extensions, I only have:

AzureEdgeRemoteSupport

AzureEdgeTelemetryAndDiagnostics

I SEEM to be missing these based on the link above: AzureEdgeDeviceManagement and AzureEdgeLifecycleManageIs this a problem ? If so, how do I manually add these ?

Thanks

Azure Stack HCI
Azure Stack HCI
A hyperconverged infrastructure operating system delivered as an Azure service that provides security, performance, and feature updates.
300 questions
Azure Arc
Azure Arc
A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
368 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Prrudram-MSFT 22,941 Reputation points
    2024-06-05T19:18:42.67+00:00

    Hi @Stack Admin

    If you are still facing this issue, please try with below

    $Subscription = "XXX"

    New-AzConnectedMachineExtension -Name "AzureEdgeLifecycleManager"  -ResourceGroupName XXX  -MachineName $env:COMPUTERNAME -Location XX  -Publisher "Microsoft.AzureStack.Orchestration" -ExtensionType "LcmController" -SubscriptionId $Subscription

    New-AzConnectedMachineExtension -Name "AzureEdgeDeviceManagement"  -ResourceGroupName XXX  -MachineName $env:COMPUTERNAME -Location XX  -Publisher "Microsoft.Edge" -ExtensionType "DeviceManagementExtension" -SubscriptionId $Subscription

    Please feel free to let me know if you have any question.

    If I have answered your query, please click "Accept as answer" as a token of appreciation

    0 comments No comments