-
Notifications
You must be signed in to change notification settings - Fork 2.7k
feat: Added support for merging targets in DNSEndpoint using a label #5619
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
base: master
Are you sure you want to change the base?
Conversation
The committers listed above are authorized under a signed CLA. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Welcome @kuritka! |
Hi @kuritka. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Hello @kuritka, Thanks for this PR, this is quite a challenge for handling multi cluster. First, this is quite unusual to implement features using labels. Second, wdyt about implementing a multiple ownership feature ? This would allow update and the complete deletion would happen when the last owner is deleting. |
What does it do ?
This PR introduces a new strategy for merging targets in DNSEndpoint, activated by adding the label
merge-strategy: merge-targets
to the endpoint.If this label is set, ExternalDNS will automatically merge targets across different owner-ids into a single resulting endpoint. No special configuration is needed—just add the label to the relevant endpoints.
Example:
If you have two DNSEndpoints (typically from different clusters or owners):
and
ExternalDNS will merge the targets in DNS as follows:
Note:
Motivation
Enable merging of DNS targets from multiple owners by adding a single label, making multi-cluster or multi-controller setups simpler and conflict-free.
More