I’ve hit this before on Azure Local, and the message keeps showing because removing the Arc Resource Bridge from the Azure Portal does not clean up the bridge artifacts on the host. Windows Admin Center is detecting leftovers on the node.
You need to remove those pieces locally, otherwise AKS hybrid will refuse to deploy.
Here’s exactly what you should do:
Uninstall the Arc agents from the host Run these on the server:
-
sc delete himds -
sc delete azcmagent -
sc delete gc_SERVICE
Then remove:
C:\Program Files\AzureConnectedMachineAgent C:\ProgramData\AzureConnectedMachineAgent
Remove the local Resource Bridge folder Delete:
C:\AzureResourceBridge C:\ProgramData\AzureResourceBridge
Cleanup the kubeconfig and network leftovers If present, delete:
C:\Users\<user>\.kube
Reboot the host
Confirm the node is no longer Arc-connected Run:
-
azcmagent showIt should return “not connected”.
After these steps, Windows Admin Center will stop detecting the old bridge and you’ll be able to deploy AKS hybrid normally.