Need K8s configure on existing Azure Local Cluster and Arc Resource Bridge

Rasitha Mudugama Hewage 180 Reputation points
2025-12-17T09:37:59.6266667+00:00

Hi Support,

I need to configure k8s on existing Azure Local cluster and Arc Resource Bridge and please send me step by step guideline to complete it.

Azure Local
{count} votes

Answer accepted by question author
  1. Ankit Yadav 8,800 Reputation points Microsoft External Staff Moderator
    2025-12-17T11:10:34.25+00:00

    Hey @Rasitha Mudugama Hewage ,

    It sounds like you're looking to set up Kubernetes on your existing Azure Local cluster and connect it with the Arc Resource Bridge. Here’s a step-by-step guideline to help you get started:

    Step-by-Step Guide to Configure Kubernetes on Azure Local with Arc Resource Bridge

    1. Prerequisites:
      • Ensure you have an Azure account with an active subscription.
      • Your Azure Local cluster should be set up and running.
      • Make sure you have the latest Azure CLI version installed on your machine.
    2. Install the AKS Arc Support Module:
      • Before you start, it's a good idea to install and run the AKS Arc support module to diagnose any potential issues that might arise during your configuration.
    3. Create the API Server and Connect to Your AKS Cluster:
      • You can use the Azure CLI to connect to your AKS cluster. Run the following:
             az connectedk8s proxy --name <YourAKSClusterName> --resource-group <YourResourceGroup> --file .\aks-arc-kube-config
        
      • This command will create a proxy connection to your Kubernetes cluster. Keep this terminal open while you verify your connection in another terminal.
    4. Verify the Connection to Your Cluster:
      • In a new terminal, execute the following command to check your cluster nodes:
             kubectl get node -A --kubeconfig .\aks-arc-kube-config
        
      • Ensure that the nodes appear and their statuses are listed as Ready.
    5. Deploying Applications:
      • Once connected, you can start deploying applications on your AKS cluster. You may want to create Kubernetes deployment YAML files or use Helm for managing your applications.
    6. Set Up Ingress:
      • For managing external access to your services, consider setting up an ingress controller. Refer to Ingress for AKS for setup instructions.
    7. Monitor and Troubleshoot:

    Useful Links for References:

    Feel free to ask if you have any questions or if there's anything else you need help with!

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.