In Azure Kubernetes Service(AKS), is the master component managed in an isolated environment from other users?

10/21/2018

In Azure Kubernetes Service(AKS), is the master component managed in an isolated environment from other users? It is not possible to manipulate the resources of the AKS master component directly. Therefore, I want to confirm that it is safe. Thank you.

-- Tsukuyomi
azure-container-service
azure-kubernetes

1 Answer

10/23/2018

For Azure Kubernetes Service(AKS), you can see a resource of the Kubernetes service when you create it. Also, you can find a resource group named MC_groupName_aksName_location associate to your aks. It means you can manage the resource of AKS in the Azure portal. In addition, you can also remotely manage the resources use Azure CLI.

For the isolated environment, the AKS can be isolated from other users in the network level. For security, there is a Network Security Group for you. For more details about the security, see Security concepts for applications and clusters in Azure Kubernetes Service (AKS).

-- Charles Xu
Source: StackOverflow