feat: add support for PTR, MX and DS record types#6337
feat: add support for PTR, MX and DS record types#6337castorw wants to merge 2 commits intokubernetes-sigs:masterfrom
Conversation
|
[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. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @castorw. 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 Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions 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. |
|
I think you need to provide https://github.com/kubernetes-sigs/external-dns/blob/master/docs/contributing/bug-report.md. The only record i'm not using is DS, rest are working fine. So not too clear what the problem is at the moment. |
|
I am working with AWS provider, which does not load all record types due to the following call stack:
Therefore using supported record types defined in |
|
Other option would be to allow these only for Route53 provider here. But not sure if there is a reason for these types not being allowed globally. |
|
/assign @ivankatliarchuk |
|
@ivankatliarchuk Do you think we can move forward with this? |
Still w8 to better understand the problem and risks. |
What does it do ?
This PR allows use of the following record types:
Motivation
While setting up
external-dnsas provisioner for reverse zones I noticed that the controller gets in a conflict loop while trying to create records which already exist. It creates records and then in the next loop attempts to create these again. This is caused by a simple omission of allowed record types in therecordfilter.gofile. This will allow users to manage wider range of records.More