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

Fix(ipv6): support ipv6 shortener and expander equal #4351

Merged

Conversation

dongjiang1989
Copy link
Contributor

Description

Fixes #4326

Support Short and Long IPv6 addresses to be recognized as the same.

Checklist

  • Unit tests updated
  • End user documentation updated

Signed-off-by: dongjiang1989 <dongjiang1989@126.com>
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Mar 31, 2024
@k8s-ci-robot
Copy link
Contributor

Hi @dongjiang1989. 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 /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

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/test-infra repository.

@k8s-ci-robot k8s-ci-robot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Mar 31, 2024
@dongjiang1989
Copy link
Contributor Author

cc @d-honeybadger

@dongjiang1989
Copy link
Contributor Author

/ok-to-test

@k8s-ci-robot
Copy link
Contributor

@dongjiang1989: Cannot trigger testing until a trusted user reviews the PR and leaves an /ok-to-test message.

In response to this:

/ok-to-test

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.

endpoint/endpoint.go Outdated Show resolved Hide resolved
@mloiseleur
Copy link
Contributor

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Apr 5, 2024
@mloiseleur
Copy link
Contributor

@dongjiang1989 🤔 Instead of keeping it as a string, wdyt of storing it as Addr instead of string ?

@dongjiang1989
Copy link
Contributor Author

dongjiang1989 commented Apr 7, 2024

@dongjiang1989 🤔 Instead of keeping it as a string, wdyt of storing it as Addr instead of string ?

Thanks for your review. @mloiseleur
Hmmm... In my opinion, it is more appropriate to use string type for Target. Target is not only Addr, but also domain type, link example.org

Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
@mloiseleur
Copy link
Contributor

mloiseleur commented Apr 8, 2024

Mmmh You're right, it's not a good idea to replace string with Addr, considering its usage.

Nonetheless, with this PR + the existing code in IsLess, it may call ParseAddr many times for the same target.
So let's give us one more chance to avoid that. I have an other idea.

Wdyt about converting Target from a string to a struct with a string and Addr* ?
It would mean it may use Addr when it's relevant and keep string comparison when it's not an IP ?

return t[i] < t[j]
ipi, err := netip.ParseAddr(t[i])
if err != nil {
return t[i] < t[j]
Copy link
Contributor

Choose a reason for hiding this comment

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

this looks wrong, if t[j] is not parseable, or ?

Example which would be wrong:

t[j] := 2600.com 
t[i] := 1.1.1.1 // or use 3.3.3.3 if the dot1 is the one that is good

Copy link
Contributor Author

@dongjiang1989 dongjiang1989 Apr 9, 2024

Choose a reason for hiding this comment

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

Sorry. I don't understand it.Less just for sort[]Target.
Add new unittest case, PTAL recheck, thanks.
ref: f3c1e32

Signed-off-by: dongjiang1989 <dongjiang1989@126.com>
@dongjiang1989
Copy link
Contributor Author

Mmmh You're right, it's not a good idea to replace string with Addr, considering its usage.

Nonetheless, with this PR + the existing code in IsLess, it may call ParseAddr many times for the same target. So let's give us one more change to avoid that. I have an other idea.

Wdyt about converting Target from a string to a struct with a string and Addr* ? It would mean it may use Addr when it's relevant and keep string comparison when it's not an IP ?

Thanks. I Got it. Change Targets []string to Targets []struct, impact on use of IsLess(x Targets) and Same(x Targets) methods. Maybe merge it first, I'll add a follow-up PR to change it to struct and change all provider usage.
@mloiseleur Wdyt? or change it in this PR?

@mloiseleur
Copy link
Contributor

It's better to do it in one PR, so yes, in this PR.

@mloiseleur
Copy link
Contributor

@dongjiang1989 In fact, we have discussed of this PR with @szuecs .

Even if it will increase cpu time, on external-dns we should focus to keep the state as tiny and simple as possible.

So this PR is good as it is currently. Thanks.

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Apr 9, 2024
@szuecs
Copy link
Contributor

szuecs commented Apr 9, 2024

/approve

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: szuecs

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 Apr 9, 2024
@k8s-ci-robot k8s-ci-robot merged commit c7f1559 into kubernetes-sigs:master Apr 9, 2024
13 checks passed
@dongjiang1989
Copy link
Contributor Author

Thanks. I'll add a follow-up PR

@dongjiang1989 dongjiang1989 deleted the support-ipv6-expanded branch April 10, 2024 01:26
truecharts-admin referenced this pull request in truecharts/public May 17, 2024
…rnal-dns to v0.14.2@3fcad62 by renovate (#22163)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[registry.k8s.io/external-dns/external-dns](https://github.com/kubernetes-sigs/external-dns)
| patch | `v0.14.1` -> `v0.14.2` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>kubernetes-sigs/external-dns
(registry.k8s.io/external-dns/external-dns)</summary>

###
[`v0.14.2`](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.14.2)

[Compare
Source](https://github.com/kubernetes-sigs/external-dns/compare/v0.14.1...v0.14.2)

#### What's Changed

- kustomize-v0.14.1 by [@&#8203;Raffo](https://github.com/Raffo) in
[https://github.com/kubernetes-sigs/external-dns/pull/4331](https://github.com/kubernetes-sigs/external-dns/pull/4331)
- replace all links in tutorials for v0.14.1 by
[@&#8203;Raffo](https://github.com/Raffo) in
[https://github.com/kubernetes-sigs/external-dns/pull/4332](https://github.com/kubernetes-sigs/external-dns/pull/4332)
- chore: upgrade ExternalDNS to go 1.22 by
[@&#8203;mloiseleur](https://github.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4318](https://github.com/kubernetes-sigs/external-dns/pull/4318)
- build(deps): bump the dev-dependencies group with 13 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4329](https://github.com/kubernetes-sigs/external-dns/pull/4329)
- build(deps): bump the dev-dependencies group with 5 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4334](https://github.com/kubernetes-sigs/external-dns/pull/4334)
- build(deps): bump the dev-dependencies group with 9 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4349](https://github.com/kubernetes-sigs/external-dns/pull/4349)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4341](https://github.com/kubernetes-sigs/external-dns/pull/4341)
- Add `dnsendpoint` CRD to Helm chart by
[@&#8203;onedr0p](https://github.com/onedr0p) in
[https://github.com/kubernetes-sigs/external-dns/pull/4322](https://github.com/kubernetes-sigs/external-dns/pull/4322)
- build(deps): bump the dev-dependencies group with 13 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4361](https://github.com/kubernetes-sigs/external-dns/pull/4361)
- build(deps): bump GrantBirki/json-yaml-validate from 2.6.1 to 2.6.2 in
the dev-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4364](https://github.com/kubernetes-sigs/external-dns/pull/4364)
- chore(chart): Released chart for v0.14.1 by
[@&#8203;stevehipwell](https://github.com/stevehipwell) in
[https://github.com/kubernetes-sigs/external-dns/pull/4357](https://github.com/kubernetes-sigs/external-dns/pull/4357)
- chore: alphabetical order on providers by
[@&#8203;mloiseleur](https://github.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4350](https://github.com/kubernetes-sigs/external-dns/pull/4350)
- doc: advertise current plan on providers by
[@&#8203;mloiseleur](https://github.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4365](https://github.com/kubernetes-sigs/external-dns/pull/4365)
- Fix(ipv6): support ipv6 shortener and expander equal by
[@&#8203;dongjiang1989](https://github.com/dongjiang1989) in
[https://github.com/kubernetes-sigs/external-dns/pull/4351](https://github.com/kubernetes-sigs/external-dns/pull/4351)
- feat(WebhookProvider): Let WebhookProvider return `SoftError` on
response status codes >= 500 by
[@&#8203;SimonKienzler](https://github.com/SimonKienzler) in
[https://github.com/kubernetes-sigs/external-dns/pull/4319](https://github.com/kubernetes-sigs/external-dns/pull/4319)
- Webhook provider: Use correct error gauge in `AdjustEndpoints()` func
by [@&#8203;SimonKienzler](https://github.com/SimonKienzler) in
[https://github.com/kubernetes-sigs/external-dns/pull/4374](https://github.com/kubernetes-sigs/external-dns/pull/4374)
- build(deps): bump the dev-dependencies group with 18 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4381](https://github.com/kubernetes-sigs/external-dns/pull/4381)
- Add exclude domains value in Chart by
[@&#8203;bford-evs](https://github.com/bford-evs) in
[https://github.com/kubernetes-sigs/external-dns/pull/4380](https://github.com/kubernetes-sigs/external-dns/pull/4380)
- docs(aws): fix typo and upgrade cleanup flow by
[@&#8203;franzudev](https://github.com/franzudev) in
[https://github.com/kubernetes-sigs/external-dns/pull/4389](https://github.com/kubernetes-sigs/external-dns/pull/4389)
- docs(gke): detail how to configure workload identity by
[@&#8203;userbradley](https://github.com/userbradley) in
[https://github.com/kubernetes-sigs/external-dns/pull/4373](https://github.com/kubernetes-sigs/external-dns/pull/4373)
- chore(ci): fix failing test by
[@&#8203;mloiseleur](https://github.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4397](https://github.com/kubernetes-sigs/external-dns/pull/4397)
- chore: Update controller-tools version to v0.14.0 by
[@&#8203;dongjiang1989](https://github.com/dongjiang1989) in
[https://github.com/kubernetes-sigs/external-dns/pull/4400](https://github.com/kubernetes-sigs/external-dns/pull/4400)
- chore(ci): update golangci-lint to v1.57.2 by
[@&#8203;dongjiang1989](https://github.com/dongjiang1989) in
[https://github.com/kubernetes-sigs/external-dns/pull/4406](https://github.com/kubernetes-sigs/external-dns/pull/4406)
- chore: upgrade ExternalDNS to go 1.22.2 by
[@&#8203;mloiseleur](https://github.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4414](https://github.com/kubernetes-sigs/external-dns/pull/4414)
- build(deps): bump the dev-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4412](https://github.com/kubernetes-sigs/external-dns/pull/4412)
- build(deps): bump the dev-dependencies group across 1 directory with
24 updates by [@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4416](https://github.com/kubernetes-sigs/external-dns/pull/4416)
- custom Azure Active Directory Authority Host by
[@&#8203;Jeremy-Boyle](https://github.com/Jeremy-Boyle) in
[https://github.com/kubernetes-sigs/external-dns/pull/4210](https://github.com/kubernetes-sigs/external-dns/pull/4210)
- feat(DNSimple): User API tokens by
[@&#8203;IntegralProgrammer](https://github.com/IntegralProgrammer) in
[https://github.com/kubernetes-sigs/external-dns/pull/4274](https://github.com/kubernetes-sigs/external-dns/pull/4274)
- docs: annotation placement for azuredns tutorial by
[@&#8203;jonas-budde](https://github.com/jonas-budde) in
[https://github.com/kubernetes-sigs/external-dns/pull/4415](https://github.com/kubernetes-sigs/external-dns/pull/4415)
- feat(azure): add zone name filter for Azure Private DNS by
[@&#8203;khuedoan](https://github.com/khuedoan) in
[https://github.com/kubernetes-sigs/external-dns/pull/4346](https://github.com/kubernetes-sigs/external-dns/pull/4346)
- test: detect no change necessary with provider specific config by
[@&#8203;szuecs](https://github.com/szuecs) in
[https://github.com/kubernetes-sigs/external-dns/pull/4189](https://github.com/kubernetes-sigs/external-dns/pull/4189)
- docs: add setup example with helm chart on some providers by
[@&#8203;omerap12](https://github.com/omerap12) in
[https://github.com/kubernetes-sigs/external-dns/pull/4405](https://github.com/kubernetes-sigs/external-dns/pull/4405)
- test: controller run() and successfully shutdown by
[@&#8203;szuecs](https://github.com/szuecs) in
[https://github.com/kubernetes-sigs/external-dns/pull/3639](https://github.com/kubernetes-sigs/external-dns/pull/3639)
- fix syntax on cloudflare externalDNS by
[@&#8203;ilyesAj](https://github.com/ilyesAj) in
[https://github.com/kubernetes-sigs/external-dns/pull/4436](https://github.com/kubernetes-sigs/external-dns/pull/4436)
- build(deps): bump the dev-dependencies group across 1 directory with
11 updates by [@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4440](https://github.com/kubernetes-sigs/external-dns/pull/4440)
- chore(chart): Adding extra containers by
[@&#8203;omerap12](https://github.com/omerap12) in
[https://github.com/kubernetes-sigs/external-dns/pull/4432](https://github.com/kubernetes-sigs/external-dns/pull/4432)
- aws: add ca-west-1 region by
[@&#8203;jeremy-albuixech](https://github.com/jeremy-albuixech) in
[https://github.com/kubernetes-sigs/external-dns/pull/4444](https://github.com/kubernetes-sigs/external-dns/pull/4444)
- fix: duplicated endpoint per hosted zone by
[@&#8203;leonardocaylent](https://github.com/leonardocaylent) in
[https://github.com/kubernetes-sigs/external-dns/pull/4296](https://github.com/kubernetes-sigs/external-dns/pull/4296)
- build(deps): bump actions/checkout from 4.1.4 to 4.1.5 in the
dev-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4438](https://github.com/kubernetes-sigs/external-dns/pull/4438)
- Add IPv6 AAAA record support to PiHole provider by
[@&#8203;PseudoResonance](https://github.com/PseudoResonance) in
[https://github.com/kubernetes-sigs/external-dns/pull/4324](https://github.com/kubernetes-sigs/external-dns/pull/4324)
- fix: soft error on cloudflare rate limits by
[@&#8203;ebachle](https://github.com/ebachle) in
[https://github.com/kubernetes-sigs/external-dns/pull/4437](https://github.com/kubernetes-sigs/external-dns/pull/4437)
- Update cloudflare.md by
[@&#8203;mfreeman451](https://github.com/mfreeman451) in
[https://github.com/kubernetes-sigs/external-dns/pull/4449](https://github.com/kubernetes-sigs/external-dns/pull/4449)
- Fix headings, whitespace by
[@&#8203;stefanlasiewski](https://github.com/stefanlasiewski) in
[https://github.com/kubernetes-sigs/external-dns/pull/4457](https://github.com/kubernetes-sigs/external-dns/pull/4457)
- docs: add reference to anexia webhook provider by
[@&#8203;ProbstenHias](https://github.com/ProbstenHias) in
[https://github.com/kubernetes-sigs/external-dns/pull/4441](https://github.com/kubernetes-sigs/external-dns/pull/4441)
- fix logline mentioning plugin api by
[@&#8203;Raffo](https://github.com/Raffo) in
[https://github.com/kubernetes-sigs/external-dns/pull/4459](https://github.com/kubernetes-sigs/external-dns/pull/4459)
- docs: lint gke docs + make terraform config more secure by
[@&#8203;DrFaust92](https://github.com/DrFaust92) in
[https://github.com/kubernetes-sigs/external-dns/pull/4456](https://github.com/kubernetes-sigs/external-dns/pull/4456)
- build(deps): bump action-stars/install-tool-from-github-release from
0.2.2 to 0.2.3 in the dev-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4464](https://github.com/kubernetes-sigs/external-dns/pull/4464)
- changed documentation to include more details description when using
API Tokens by [@&#8203;rhjensen79](https://github.com/rhjensen79) in
[https://github.com/kubernetes-sigs/external-dns/pull/4474](https://github.com/kubernetes-sigs/external-dns/pull/4474)
- fix: add clarification to endpoint unit tests by
[@&#8203;leonardocaylent](https://github.com/leonardocaylent) in
[https://github.com/kubernetes-sigs/external-dns/pull/4462](https://github.com/kubernetes-sigs/external-dns/pull/4462)
- build(deps): bump the dev-dependencies group across 1 directory with
19 updates by [@&#8203;mloiseleur](https://github.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4476](https://github.com/kubernetes-sigs/external-dns/pull/4476)
- build(deps): bump the dev-dependencies group across 1 directory with
19 updates by [@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4475](https://github.com/kubernetes-sigs/external-dns/pull/4475)

#### New Contributors

- [@&#8203;onedr0p](https://github.com/onedr0p) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4322](https://github.com/kubernetes-sigs/external-dns/pull/4322)
- [@&#8203;SimonKienzler](https://github.com/SimonKienzler) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4319](https://github.com/kubernetes-sigs/external-dns/pull/4319)
- [@&#8203;bford-evs](https://github.com/bford-evs) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4380](https://github.com/kubernetes-sigs/external-dns/pull/4380)
- [@&#8203;franzudev](https://github.com/franzudev) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4389](https://github.com/kubernetes-sigs/external-dns/pull/4389)
- [@&#8203;userbradley](https://github.com/userbradley) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4373](https://github.com/kubernetes-sigs/external-dns/pull/4373)
- [@&#8203;Jeremy-Boyle](https://github.com/Jeremy-Boyle) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4210](https://github.com/kubernetes-sigs/external-dns/pull/4210)
- [@&#8203;IntegralProgrammer](https://github.com/IntegralProgrammer)
made their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4274](https://github.com/kubernetes-sigs/external-dns/pull/4274)
- [@&#8203;jonas-budde](https://github.com/jonas-budde) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4415](https://github.com/kubernetes-sigs/external-dns/pull/4415)
- [@&#8203;khuedoan](https://github.com/khuedoan) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4346](https://github.com/kubernetes-sigs/external-dns/pull/4346)
- [@&#8203;omerap12](https://github.com/omerap12) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4405](https://github.com/kubernetes-sigs/external-dns/pull/4405)
- [@&#8203;ilyesAj](https://github.com/ilyesAj) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4436](https://github.com/kubernetes-sigs/external-dns/pull/4436)
- [@&#8203;jeremy-albuixech](https://github.com/jeremy-albuixech) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4444](https://github.com/kubernetes-sigs/external-dns/pull/4444)
- [@&#8203;leonardocaylent](https://github.com/leonardocaylent) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4296](https://github.com/kubernetes-sigs/external-dns/pull/4296)
- [@&#8203;PseudoResonance](https://github.com/PseudoResonance) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4324](https://github.com/kubernetes-sigs/external-dns/pull/4324)
- [@&#8203;ebachle](https://github.com/ebachle) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4437](https://github.com/kubernetes-sigs/external-dns/pull/4437)
- [@&#8203;mfreeman451](https://github.com/mfreeman451) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4449](https://github.com/kubernetes-sigs/external-dns/pull/4449)
- [@&#8203;ProbstenHias](https://github.com/ProbstenHias) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4441](https://github.com/kubernetes-sigs/external-dns/pull/4441)
- [@&#8203;DrFaust92](https://github.com/DrFaust92) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4456](https://github.com/kubernetes-sigs/external-dns/pull/4456)
- [@&#8203;rhjensen79](https://github.com/rhjensen79) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4474](https://github.com/kubernetes-sigs/external-dns/pull/4474)

**Full Changelog**:
kubernetes-sigs/external-dns@v0.14.1...v0.14.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMSIsInVwZGF0ZWRJblZlciI6IjM3LjM2OC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
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. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unnecessary AAAA updates b/c shortened and long IPv6 addresses are seen as different
4 participants