Can we configure kube-router network policy from Azure Kubernetes Service using ARM Template

9/7/2018

I am trying to deploy to an AKS cluster using ARM templates. I downloaded the generated template from the Azure portal, but couldn't figure out "kube-router" network policies through ARM template.

Is there a way to do this through ARM template?

-- aazeem
arm-template
azure
azure-aks
azure-kubernetes
kubernetes

1 Answer

9/10/2018

As I know, "kube-router" is a service of Kubernetes. You can get something useful from here.

You can find all the configuration of template for Azure Kubernetes here. So it seems you cannot set the "kube-router" network policies through ARM template. But you can take a look at the "networkProfile" of the AKS properties and there is a network Policy.

-- Charles Xu
Source: StackOverflow