Skip to main content
Version: 3.18 (latest)

Configure DNS policy for workloads

note

This feature is tech preview. Tech preview features may be subject to significant changes before they become GA.

Big picture​

Configure Calico Enterprise for Windows domain based policy (DNS policy) for Windows workloads in Kubernetes clusters.

Value​

Using domain names in policies to identify services outside of the cluster is often operationally simpler and more robust than using IP addresses. In particular, they are useful when an external service does not map to a well known set of static IP addresses.

Before you begin​

Limitations

Calico Enterprise supports DNS policy on Windows with these limitations:

  • It could take up to 5 seconds for the first TCP SYN packet to go through, for a connection to a DNS domain name. This is because DNS policies are dynamically programmed. The first TCP packet could be dropped since there is no policy to allow it until Calico Enterprise for Windows detects domain IPs from DNS response and programs DNS policy rules. The Windows TCPIP stack will send SYN again after TCP Retransmission timeout (RTO) if previous SYN has been dropped.
  • Some runtime libraries do not honour DNS TTL. Instead, they manage their own DNS cache which has a different TTL value for DNS entries. On .NET Framework, the value to control DNS TTL is ServicePointManager.DnsRefreshTimeout which has default value of 120 seconds - DNS refresh timeout. It is important that Calico Enterprise for Windows uses a longer TTL value than the one used by the application, so that DNS policy will be in place when the application is making outbound connections. The configuration item “WindowsDNSExtraTTL” should have a value bigger than the maximum value of DNS TTL used by the runtime libraries for your applications.
  • Due to the limitations of Windows container networking, a policy update could have an impact on performance. Programming DNS policy may result in more policy updates. Setting “WindowsDNSExtraTTL” to a bigger number will reduce the performance impact.

How to​

Calico Enterprise for Windows DNS policy is enabled by default and is configured the same way as DNS policy for Linux. Use the following Windows-specific parameters for specifying the file to preserve learned DNS information and extra TTL in addition to DNS TTL.

Felix configurations​

FieldDescriptionAccepted ValuesSchemaDefault
WindowsDNSCacheFileSpecify the name of the file that Calico Enterprise for Windows uses to preserve learned DNS information when restarting.stringstringc:\\TigeraCalico\\felix-dns-cache.txt
WindowsDNSExtraTTLSpecify extra time in seconds to keep IPs and alias names that are learned from DNS, in addition to each name or IP's advertised TTL.intint120

Additional resources​