-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AWS: select only one Hosted Zone to create the Route53 records #4454
Comments
Additional information: The record should be only created at |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
/retitle feat(aws): select only one Hosted Zone to create the Route53 records |
/retitle AWS: select only one Hosted Zone to create the Route53 records |
@leonardocaylent Is this issue solved or did I missed something ? |
Previous context needed:
The issue: link
This Pull Request: link
Current behavior:
User has 3 hosted zones in AWS:
Public: mydomain.com
Private: internal.mydomain.com
Private: us-west-2.internal.mydomain.com
User creates an ingress with host: testdeploy.us-west-2.internal.mydomain.com
One A record to the AWS Load Balancer is created on each of the 3 Hosted Zones to k8s-ingress-1234abcd.us-west-2.elb.amazonaws.com with the corresponding 2 TXT records.
Desired behavior:
The external-dns controller should detect that the record is only wanted on the
us-west-2.internal.mydomain.com
Hosted Zone in this case.Discussion:
This will be done modifying the current function
suitableZones
on the aws.go provider. With the addition of rolling back the fix for overlapping zones and a regression to check that:cc: @Raffo @mloiseleur
The text was updated successfully, but these errors were encountered: