-
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
helm: Don't suppress configuration for registries other than TXT #3736
helm: Don't suppress configuration for registries other than TXT #3736
Conversation
@johngmyers Wdyt about changing also the help message of the CLI. Currently with --help: --txt-owner-id="default" When using the TXT registry, a name that identifies this instance of ExternalDNS
(default: default) I suggest to replace it with something like --txt-owner-id="default" When using the registry, a name that identifies this instance of ExternalDNS
(default: default) |
@mloiseleur chaging the description of the flag would be good, but is outside the scope of this PR. I put a more complete description in the second paragraph of https://github.com/kubernetes-sigs/external-dns/blob/master/docs/registry/registry.md |
@mloiseleur: changing LGTM is restricted to collaborators 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. |
@@ -88,7 +87,6 @@ spec: | |||
{{- if and (eq .Values.txtPrefix "") (ne .Values.txtSuffix "") }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{- if and (eq .Values.txtPrefix "") (ne .Values.txtSuffix "") }} | |
{{- if and (not .Values.txtPrefix "") .Values.txtSuffix }} |
This change would be worth making for consistency while modifying this area.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @johngmyers, this looks good to me. I did add a single comment which is IMHO a worthwhile change but it's not necessary.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: johngmyers, mloiseleur, stevehipwell 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 |
Description
The "aws-sd" and "dynamodb" registries also consume txtOwnerId. The "dynamodb" registry will also soon be consuming txtPrefix and txtSuffix.
Also document these existing settings.
Checklist