-
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
Simplify DNS provider requirements by extracting common parts #228
Comments
I agree. |
first improvement (point 3 from above list) was done by @totallyunknown in #252 . Thanks a lot :) |
After working on #356 I think at a minimum AWS needs a unique implementation of |
…common (kubernetes-sigs#263) * kubernetes-sigs#228 Simplify DNS provider requirements by extracting common * kubernetes-sigs#228 Simplify DNS provider requirements by extracting common * Missing boilerplate added * rename recordtypefilter, fail fast statements * rework zone finder, update deps * chore: drop namespace from cloudflare method name
Is this still a blocker for new providers? If so, what needs to be done? |
It is not a blocker, more like a wishful thinking. Not having this implemented should not stop us from adding providers. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
@fejta-bot: Closing this issue. In response to this:
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/test-infra repository. |
* Various fixes to integration tests I fixed a few things about the integration tests that bugged me a litle bit. - do not actually run the test plugin, it's out of our tool's scope - run only integration tests from the script (previously ./...) - use the installed krew when host-krew is present Signed-off-by: Ahmet Alp Balkan <[email protected]> * Address code review feedback Signed-off-by: Ahmet Alp Balkan <[email protected]>
In the view of few PRs being created to add new dns providers into External DNS it has become more apparent that there are few implicit implementation requirements which can be extracted and made common for all providers:
Records()
call based on record type (currently providers only includeA, TXT, CNAME
records into response)domain
provided toProvider
in the initializer (--domain-filter)I suggest we do not postpone this until too many providers will need to be refactored
/cc @linki
The text was updated successfully, but these errors were encountered: