Skip to content
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

Change DomainFilter to apply to records as well #1442

Merged

Conversation

bl1nk
Copy link
Contributor

@bl1nk bl1nk commented Feb 24, 2020

These changes were implemented for the setup mentioned in #1137:

We start multiple external-dns processes, one for each Hosted Zone where DNS entries should be created (other options omitted for brevity):
1: external-dns --domain-filter=cluster1.example.com
2: external-dns --domain-filter=example.com --exclude-domains=cluster1.example.com
Process "1" does exactly what it is supposed to, creating records in the Hosted Zone cluster1.example.com only.
Process "2" however tries to create DNS entries for example.com and cluster1.example.com:
[...]

domain_filter.go was moved to the endpoint package to make it possible to filter and exclude record names in plan.filterRecordsForPlan() so it does not have to be implemented in every single provider. Now Process "2" will only create DNS entries for example.com. Before --exclude-domains was only filtering/excluding DNS zones.

Because some providers access DomainFilter.filters directly it had to be exported.

A build with these changes has been running in production at FREE NOW for a couple of weeks without issues.

Fixes #1137

This moves `domain_filter.go` to the `endpoint` package to make it
possible to filter and exclude record names in
`plan.filterRecordsForPlan()` so it does not have to be implemented in
every single provider.

Because some providers access `DomainFilter.filters` directly it had to
be exported.
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Feb 24, 2020
@k8s-ci-robot
Copy link
Contributor

Welcome @bl1nk!

It looks like this is your first PR to kubernetes-sigs/external-dns 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes-sigs/external-dns has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Feb 24, 2020
@alexanderbuhler
Copy link

@bl1nk Highly appreciated change! Do you have a public docker image containing these changes somewhere?

@bl1nk
Copy link
Contributor Author

bl1nk commented Feb 27, 2020

@bl1nk Highly appreciated change! Do you have a public docker image containing these changes somewhere?

@alexanderbuhler Unfortunately not. With the only requirement being Docker installed and running you can clone the repo, check out my branch and run IMAGE=your-registry/external-dns make build.mini to build your own image though.

Copy link
Member

@njuettner njuettner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 10, 2020
@linki
Copy link
Member

linki commented Mar 10, 2020

/lgtm
/approve

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: bl1nk, linki

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 10, 2020
@linki
Copy link
Member

linki commented Mar 10, 2020

@bl1nk Thank you!

@k8s-ci-robot k8s-ci-robot merged commit ec7c6ba into kubernetes-sigs:master Mar 10, 2020
@bl1nk bl1nk deleted the filter-record-creation branch March 15, 2020 23:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

external-dns creates DNS entries for sub-domains even if exclude-domains filter is set
5 participants