Hi RamNad,
Thanks for response,
Even though your Kubernetes (K8s) cluster is installed on a CentOS server running on an Azure VM, you'll still need to connect it to Azure Arc if you want to use Azure's tools for centralized management, monitoring, and security. Azure Arc treats any Kubernetes cluster running outside of Azure (on-premises, in other clouds, or even in Azure VMs) as external until it is connected.
Without connecting your K8s cluster to Azure Arc, Azure services like Azure Monitor, Azure Policy, and Azure Security won't be able to manage or monitor it. By connecting to Azure Arc, your cluster can be centrally managed within Azure.
You can use below comment for to connect your Kubernetes cluster to Azure Arc,az connectedk8s connect --name <ClusterName> --resource-group <ResourceGroupName> --location <AzureRegion>
To summarize:
- If you want centralized management and access to Azure services like monitoring, security, and policy, you need to connect your K8s cluster to Azure Arc.
- If you're using other tools or managing the cluster locally, you might not need to connect it to Azure Arc.
If the answer is helpful, Please Click "Accept Answer" and "Upvote"