An optional annotation external-dns.alpha.kubernetes.io/ttl
is available to customize the TTL value of a DNS record.
To configure it, simply annotate a service/ingress, e.g.:
apiVersion: v1
kind: Service
metadata:
annotations:
external-dns.alpha.kubernetes.io/hostname: nginx.external-dns-test.my-org.com.
external-dns.alpha.kubernetes.io/ttl: "60"
...
TTL must be a positive integer encoded as string.
- AWS (Route53)
- Azure
- Cloudflare
- DigitalOcean
- InMemory
- Linode
- TransIP
PRs welcome!
When the external-dns.alpha.kubernetes.io/ttl
annotation is not provided, the TTL will default to 0 seconds and enpoint.TTL.isConfigured()
will be false.
The AWS Provider overrides the value to 300s when the TTL is 0. This value is a constant in the provider code.
The DigitalOcean Provider overrides the value to 300s when the TTL is 0. This value is a constant in the provider code.
Previously with the Google Provider, TTL's were hard-coded to 300s. For safety, the Google Provider overrides the value to 300s when the TTL is 0. This value is a constant in the provider code.
For the moment, it is impossible to use a TTL value of 0 with the AWS, DigitalOcean, or Google Providers. This behavior may change in the future.
The Linode Provider default TTL is used when the TTL is 0. The default is 24 hours
The TransIP Provider minimal TTL is used when the TTL is 0. The minimal TTL is 60s.