-
Notifications
You must be signed in to change notification settings - Fork 2k
Open
Labels
backlogPull requests/issues that are backlog itemsPull requests/issues that are backlog itemsbugAn issue reporting a potential bugAn issue reporting a potential bug
Description
Version
edge
What Kubernetes platforms are you running on?
AKS Azure
Steps to reproduce
When using a dual-stack LoadBalancer Service, the NGINX Ingress Controller generates an invalid DNSEndpoint.
Instead of creating separate DNS records for IPv4 (A) and IPv6 (AAAA), a single A record is created with both IPv4 and IPv6 addresses as targets.
Actual behavior:
apiVersion: externaldns.nginx.org/v1
kind: DNSEndpoint
metadata:
name: podinfo.example.com
namespace: podinfo
spec:
endpoints:
- dnsName: podinfo.example.com
recordType: A
targets:
- 127.0.0.1
- ::1
Expected behavior:
apiVersion: externaldns.nginx.org/v1
kind: DNSEndpoint
metadata:
name: podinfo.example.com
namespace: podinfo
spec:
endpoints:
- dnsName: podinfo.example.com
recordType: A
targets:
- 127.0.0.1
- dnsName: podinfo.example.com
recordType: AAAA
targets:
- ::1
Metadata
Metadata
Assignees
Labels
backlogPull requests/issues that are backlog itemsPull requests/issues that are backlog itemsbugAn issue reporting a potential bugAn issue reporting a potential bug