Skip to content

Instantly share code, notes, and snippets.

@vyta
Created May 1, 2019 17:12
Show Gist options
  • Save vyta/92d1281845306d84df5c3433805bad94 to your computer and use it in GitHub Desktop.
Save vyta/92d1281845306d84df5c3433805bad94 to your computer and use it in GitHub Desktop.
Custom vNet Notes for K8s on Azure

Custom VNET Notes

  • subnet used for your aks cluster should not overlap with any virtual networks in the environment. This creates a new subnet to be used only by AKS.
  • service-cidr:
    • Must not be within the virtual network IP address range of your cluster
    • Must not overlap with any other virtual networks with which the cluster virtual network peers
    • Must not overlap with any on-premises IPs
  • dns-service-ip must be within service cidr AND must not use the first address, which is used for the kubernetes.default.svc.cluster.local address
  • docker-bridge-address must not be within vnet address space AND must not overlap with any other address ranges in use.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment