Applies to: AKS on Azure Local, AKS on Windows Server
This article describes errors you might encounter (and their workarounds) while connecting or disconnecting your AKS workload clusters to Azure Arc using the PowerShell cmdlets Enable-AksHciArcConnection
and Disable-AksHciArcConnection
in AKS Arc. For issues that are not covered in this article, see Troubleshooting Arc enabled Kubernetes.
You can also open a support issue if none of the listed workarounds apply to you.
Error: "A workload cluster with the name 'my-aks-cluster' was not found"
This error means that you have not created the workload cluster, or you incorrectly spelled the name of the workload cluster.
Run Get-AksHciCluster to ensure you have the correct name or that the cluster you want to connect to Arc exists.
Error: "System.Management.Automation.RemoteException Starting onboarding process Cluster "azure-arc-onboarding" set..."
The following error may occur when you use Windows Admin Center to create a workload cluster and connect it to Arc-enabled Kubernetes:
System.Management.Automation.RemoteException Starting onboarding process Cluster "azure-arc-onboarding" set. User "azure-arc-onboarding" set. Context "azure-arc-onboarding" created. Switched to context "azure-arc-onboarding". Azure login az login: error: argument --password/-p: expected one argument usage: az login [-h] [--verbose] [--debug] [--only-show-errors] [--output {json,jsonc,yaml,yamlc,table,tsv,none}] [--query JMESPATH] [--username USERNAME] [--password PASSWORD] [--service-principal] [--tenant TENANT] [--allow-no-subscriptions] [-i] [--use-device-code] [--use-cert-sn-issuer] : Job Failed Condition]
To resolve this issue, review the options below:
- Option 1: Delete the workload cluster and try again using Windows Admin Center.
- Option 2: In PowerShell, check if the cluster has been successfully created by running the Get-AksHciCluster command, and then use Enable-AksHciArcConnection to connect your cluster to Arc.
`Enable-AksHciArcConnection` fails if `Connect-AzAccount` is used to sign in to Azure
When you use Connect-AzAccount
to sign in to Azure, you might set a different subscription as your default context than the one that you gave as an input to Set-AksHciRegistration
. When you then run Enable-AksHciArcConnection
, the command expects the subscription used in Set-AksHciRegistration
. However, Enable-AksHciArcConnection
gets the default subscription set using the Connect-AzAccount
, and therefore, might cause an error.
To prevent this error, follow one of the options below:
Option 1: Run
Set-AksHciRegistration
to log in to Azure with the same parameters (subscription and resource group) you used when you first ran the command to connect your AKS host to Azure for billing. You can then useEnable-AksHciArcConnection -Name <ClusterName>
with default values, and your cluster will be connected to Arc under the AKS host billing subscription and resource group.Option 2: Run
Enable-AksHciArcRegistration
with all parameters,subscription
,resource group
,location
,tenant
, andsecret
, to connect your cluster to Azure Arc under a different subscription and resource group than the AKS host. You should also runEnable-AksHciArcRegistration
if you do not have enough permissions to connect your cluster to Azure Arc using your Azure Account (for example, if you are not the subscription owner).
Error: 'Timed out waiting for the condition'
This error usually points to one of the following issues:
- The clusters were created in an Azure VM in a virtualized environment, or you deployed AKS on Azure Local on multiple levels of virtualization.
- A slow internet caused the timeout.
If one of the above scenarios applies to you, run Disable-AksHciArcConnection, and try connecting again. If the above scenario doesn't apply to you, open a support issue for AKS on Azure Local.
Error: "Secrets "sh.helm.release.v1.azure-arc.v1" not found"
This error indicates that your Kubernetes API server could not be reached.
Try running the Disable-AksHciArcConnection
command again, and then go to the Azure portal to confirm that your connectedCluster
resource was actually deleted. You can also run kubectl get ns -A
to confirm that the namespace, azure-arc
, does not exist on your cluster.
Error: "Connection to Azure failed. Please run 'Set-AksHciRegistration' and try again"
This error means that your login credentials to Azure have expired.
Use Set-AksHciRegistration
to log in to Azure before running the Enable-AksHciArcConnection
command again. When rerunning Set-AksHciRegistration
, make sure you use the same subscription and resource group details you used when you first registered the AKS host to Azure for billing. If you rerun the command with a different subscription or resource group, they will not be registered. Once the subscription and resource group are set in Set-AksHciRegistration
, they cannot be changed without uninstalling AKS Arc.
Error: "'My-Cluster' is not a valid cluster name. Names must be lowercase and match the regular expression pattern: '^[a-z0-9][a-z0-9-]*[a-z0-9]$'"
This error indicates that the workload cluster does not follow the Kubernetes naming convention.
As the error suggests, make sure the cluster name is lowercase and matches the regular expression pattern: '^[a-z0-9][a-z0-9-]*[a-z0-9]$'.
Error: "addons.msft.microsoft "demo-arc-onboarding" already exists"
This error usually means that you already connected your AKS cluster to Arc-enabled Kubernetes.
To confirm it's connected, go to the Azure portal and check under the subscription and resource group you provided when you ran Set-AksHciRegistration
(if you used default values) or Enable-AksHciArcConnection
(if you didn't use default values). You can also confirm if your AKS on Azure Local cluster is connected to Azure by running the az connectedk8s show
Azure CLI command. If you don't see your workload cluster, run Disable-AksHciArcConnection
and try again.
Error: "autorest/azure: Service returned an error. Status=404 Code="ResourceNotFound"..."
This error means that Azure can't find the connectedCluster
Azure Resource Manager resource associated with your cluster:
"autorest/azure: Service returned an error. Status=404 Code="ResourceNotFound" Message="The Resource 'Microsoft.Kubernetes/connectedClusters/my-workload-cluster' under resource group 'AKS-HCI2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"]"
You may encounter this error if:
- You supplied an incorrect resource group or subscription while running the
Disable-AksHciArcConnection
cmdlet. - You manually deleted the resource on the Azure portal.
- Azure Resource Manager cannot find your Azure resource.
To resolve this error, as indicated in the error message, see resolve resource not found errors.
Error: "Cluster addons arc uninstall Error: namespaces "azure-arc" not found"
This error usually means that you already uninstalled Arc agents from your workload cluster, or you manually deleted the azure-arc
namespace using the kubectl
command.
Go to the Azure portal to confirm that you don't have any leaked resources. For example, verify that you don't see a connectedCluster
resource in the subscription and resource group.
Error: "Azure subscription is not properly configured"
You may encounter this issue if you haven't configured your Azure subscription with the Arc-enabled Kubernetes resource providers. We currently check that Microsoft.Kubernetes
and Microsoft.KubernetesConfiguration
are configured.
For more information about enabling these resource providers, see Register providers for Arc-enabled Kubernetes.
Error: "Unable to read ConfigMap 'azure-clusterconfig' in 'azure-arc' namespace"
You may encounter this issue when trying to re-enable the Arc connection on an AKS cluster after disabling an existing connection. The error is due to a change to the namespace in which Azure Arc secrets are stored.
The steps that lead to the error are:
- Connect a workload cluster to Azure Arc with
Enable-AksHciArcConnection -name $clusterName
. - Disconnect the cluster from Azure Arc:
Disable-AksHciArcConnection -name $clusterName
. - Connect the workload cluster to Azure Arc with this command again:
Enable-AksHciArcConnection -name $clusterName
.
The error is:
returned a non zero exit code 1 [Error: Job azure-arc-onboarding terminated with Failed to run CLI command: Error from server (NotFound): namespaces "azure-arc"
not found
System.Management.Automation.RemoteException
ERROR: Unable to read ConfigMap 'azure-clusterconfig' in 'azure-arc' namespace:
Error Response: {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"configmaps \"azure-clusterconfig\" not
found","reason":"NotFound","details":{"name":"azure-clusterconfig","kind":"configmaps"},"code":404}
System.Management.Automation.RemoteException
System.Management.Automation.RemoteException
: Job Failed Condition
Enable-AksHciArcConnection
always fails, and after you run Disable-AksHciArcConnection
, there is a remaining secret in the azure-arc-release namespace. To check if the secret exists, you can run the following command and ensure that no secret is listed:
kubectl get secret -nazure-arc-release sh.helm.release.v1.azure-arc.v1
To work around this issue, delete the azure-arc-release namespace after running Disable-AksHciArcConnection
:
$clusterName = "<name of cluster>"
Get-AksHciCredential -name $clusterName
kubectl delete namespace azure-arc-release
Disable-AksHciArcConnection -name $clusterName
Enable-AksHciArcConnection -name $clusterName