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(istio): support for ExternalIPs in Istio resources #4094

Conversation

KarstenSiemer
Copy link
Contributor

@KarstenSiemer KarstenSiemer commented Dec 5, 2023

Description

✨ Add support for ExternalIPs in Istio Gateway and VirtualService
ℹ️ This commit extends Istio Gateway and VirtualService resources to support ExternalIPs.
The changes include:

  • Checking if service has ExternalIPs defined
  • If yes, adding them to the list of targets
  • If not, continuing with the existing process

👌 Now you can have your Istio resources use externalIPs too! 🎉

Not to be ip-percritical, but don't we all love an ipgrade! 🎈

Fixes #1718
Fixes kubernetes-sigs/aws-load-balancer-controller#3490

Reason being is that aws load balancer controller does not support creating ALBs on service type resources and if provisioned using e.g. terraform, will also not add any status fields to the service.
To still be able to point to targets from the service, externalIPs is required and functional using the ingress provider.
This is however not the case for the Istio implementations, here externalIPs does not pose any effect - this PR shall fix this and align the source providers from Istio with other source providers external-dns provides.

Sample diagram of infrastructure:
want-ALB-NLB

Here the NLBs are to provide static pre-allocated IPs to the ALBs.
Which is the suggested solution by AWS for getting static IPs for ALBs. ($$$)

Target accumulation stops after extracting externalIPs, if there are any.
This is because status loadbalancers should be ignored as they might not be the loadbalancer of first contact and externalIPs should mark the external availability endpoint if set.

Plus, it seems like service.go has chosen the same approach in extractLoadBalancerTargets.

Note: This problem should also be fixable by using the targetAnnotationKey at the Istio-Gateway resource.

I have additionally tested this PR in an EKS Cluster for both Istio sources.

Checklist

  • Unit tests updated
  • End user documentation updated

End user documentation already includes an spec.externalIPs statement, which comes only true after this PR for Istio sources.

  1. Otherwise, if the Service has one or more spec.externalIPs, uses the values in that field.

@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Dec 5, 2023
@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Dec 5, 2023
@k8s-ci-robot
Copy link
Contributor

Hi @KarstenSiemer. 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 the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Dec 5, 2023
@KarstenSiemer KarstenSiemer marked this pull request as ready for review December 6, 2023 06:57
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Dec 6, 2023
@KarstenSiemer KarstenSiemer changed the title feat(istio): support for ExternalIPs in Istio resources fix(istio): support for ExternalIPs in Istio resources Dec 6, 2023
✨ Add support for ExternalIPs in Istio Gateway and VirtualService
ℹ️ This commit extends Istio Gateway and VirtualService resources
to support ExternalIPs. The changes include:
- Checking if service has ExternalIPs defined
- If yes, adding them to the list of targets
- If not, continuing with the existing process

👌 Now you can have your Istio resources use `externalIPs` too! 🎉

Not to be `ip`-percritical, but don't we all love an `ip`grade! 🎈

Signed-off-by: Karsten Siemer <karsten.siemer@sda.se>
@KarstenSiemer KarstenSiemer force-pushed the fix/istio_gateway/AppendExternalIPsToTargets branch from 0ae597d to 87a5377 Compare December 6, 2023 07:52
@mloiseleur
Copy link
Contributor

It looks good. Thanks @KarstenSiemer !
Wdyt about adding a few words on this in istio tutorial docs ?
/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 Dec 6, 2023
@mloiseleur
Copy link
Contributor

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Dec 6, 2023
ℹ️ We're making the Istio tutorial more user-friendly! 💡 We've added extra
context and instructions related to how external-dns can gather information
from the Kubernetes service of the Istio Ingress Gateway. Also, we've guided
users on setting targets manually with the appropriate annotation. 😎

Changes include:
- Illustration on how to get targets to extracted DNS names using external-dns
- Guidance to the source service documentation for more understanding 📚
- Steps to manually set targets using the 'external-dns.alpha.kubernetes.io/target'
annotation on the Istio Ingress Gateway resource or the Istio VirtualService.
@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Dec 6, 2023
@KarstenSiemer
Copy link
Contributor Author

KarstenSiemer commented Dec 6, 2023

@mloiseleur Yes, I think you are right. A few sentences about target accumulation should be in the istio docs.
I tried to keep it short to not having to add a TL;DR and linked the source service docs to not run into doc duplication problems.
I called it "Istio Ingress Gateway" on purpose, I was unsure because in the lines above it is usually called "Istio Gateway" - but this refers to the CRD of the Gateway and in that CRD it specifically mentions istio: ingressgateway in the selector, which is also where that Kubernetes service originates from.
Do you like the added docs or shall I change something about it?

@mloiseleur
Copy link
Contributor

It's concise and clear.
/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Dec 6, 2023
@KarstenSiemer
Copy link
Contributor Author

is there still anything I have to do to get this merged?

@szuecs
Copy link
Contributor

szuecs commented Jan 5, 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 Jan 5, 2024
@k8s-ci-robot k8s-ci-robot merged commit fb85418 into kubernetes-sigs:master Jan 5, 2024
14 checks passed
truecharts-admin referenced this pull request in truecharts/public Mar 22, 2024
…rnal-dns to v0.14.1@7bb4c52 by renovate (#19644)

This PR contains the following updates:

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

---

> [!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.1`](https://togithub.com/kubernetes-sigs/external-dns/releases/tag/v0.14.1)

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

#### What's Changed

- docs: add reference to adguard webhook provider by
[@&#8203;muhlba91](https://togithub.com/muhlba91) in
[https://github.com/kubernetes-sigs/external-dns/pull/4030](https://togithub.com/kubernetes-sigs/external-dns/pull/4030)
- Update azure.md by [@&#8203;sesoldi](https://togithub.com/sesoldi) in
[https://github.com/kubernetes-sigs/external-dns/pull/4009](https://togithub.com/kubernetes-sigs/external-dns/pull/4009)
- add initial support for gw apis 1.0.0 GA by
[@&#8203;larivierec](https://togithub.com/larivierec) in
[https://github.com/kubernetes-sigs/external-dns/pull/4019](https://togithub.com/kubernetes-sigs/external-dns/pull/4019)
- build(deps): bump the dev-dependencies group with 3 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4028](https://togithub.com/kubernetes-sigs/external-dns/pull/4028)
- add stackit webhook to readme by
[@&#8203;PatrickKoss](https://togithub.com/PatrickKoss) in
[https://github.com/kubernetes-sigs/external-dns/pull/4029](https://togithub.com/kubernetes-sigs/external-dns/pull/4029)
- Add org.opencontainers.image.source label to container image by
[@&#8203;robinschneider](https://togithub.com/robinschneider) in
[https://github.com/kubernetes-sigs/external-dns/pull/4022](https://togithub.com/kubernetes-sigs/external-dns/pull/4022)
- bump kustomize version to v0.14.0 by
[@&#8203;Raffo](https://togithub.com/Raffo) in
[https://github.com/kubernetes-sigs/external-dns/pull/4024](https://togithub.com/kubernetes-sigs/external-dns/pull/4024)
- OCI Provider private zone and workload identity support by
[@&#8203;anders-swanson](https://togithub.com/anders-swanson) in
[https://github.com/kubernetes-sigs/external-dns/pull/3995](https://togithub.com/kubernetes-sigs/external-dns/pull/3995)
- RFC2136: Allow multiple zones by
[@&#8203;CRASH-Tech](https://togithub.com/CRASH-Tech) in
[https://github.com/kubernetes-sigs/external-dns/pull/3976](https://togithub.com/kubernetes-sigs/external-dns/pull/3976)
- chore(chart): Updated GH workflows by
[@&#8203;stevehipwell](https://togithub.com/stevehipwell) in
[https://github.com/kubernetes-sigs/external-dns/pull/4010](https://togithub.com/kubernetes-sigs/external-dns/pull/4010)
- fix: dynamodb registry when statements over 25 by
[@&#8203;danie1sullivan](https://togithub.com/danie1sullivan) in
[https://github.com/kubernetes-sigs/external-dns/pull/4021](https://togithub.com/kubernetes-sigs/external-dns/pull/4021)
- Allow to configure revisionHistoryLimit on the K8s Deployment resource
by [@&#8203;arnisoph](https://togithub.com/arnisoph) in
[https://github.com/kubernetes-sigs/external-dns/pull/4008](https://togithub.com/kubernetes-sigs/external-dns/pull/4008)
- chore: Bump kingpin/v2 dep by
[@&#8203;mrueg](https://togithub.com/mrueg) in
[https://github.com/kubernetes-sigs/external-dns/pull/4033](https://togithub.com/kubernetes-sigs/external-dns/pull/4033)
- Update all image versions in documentation by
[@&#8203;Raffo](https://togithub.com/Raffo) in
[https://github.com/kubernetes-sigs/external-dns/pull/4037](https://togithub.com/kubernetes-sigs/external-dns/pull/4037)
- updated various broken link in ultradns tutorial by
[@&#8203;kundan2707](https://togithub.com/kundan2707) in
[https://github.com/kubernetes-sigs/external-dns/pull/3794](https://togithub.com/kubernetes-sigs/external-dns/pull/3794)
- Make --ignore-hostname-annotation flag more consistent by
[@&#8203;johngmyers](https://togithub.com/johngmyers) in
[https://github.com/kubernetes-sigs/external-dns/pull/3964](https://togithub.com/kubernetes-sigs/external-dns/pull/3964)
- service source uses externalIPs in ExternalName type if available by
[@&#8203;dromie](https://togithub.com/dromie) in
[https://github.com/kubernetes-sigs/external-dns/pull/4007](https://togithub.com/kubernetes-sigs/external-dns/pull/4007)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4046](https://togithub.com/kubernetes-sigs/external-dns/pull/4046)
- fix(google): ensure trailing dot for SRV records by
[@&#8203;siliconsheep](https://togithub.com/siliconsheep) in
[https://github.com/kubernetes-sigs/external-dns/pull/4048](https://togithub.com/kubernetes-sigs/external-dns/pull/4048)
- oracle provider: dns zone cache by
[@&#8203;anders-swanson](https://togithub.com/anders-swanson) in
[https://github.com/kubernetes-sigs/external-dns/pull/4049](https://togithub.com/kubernetes-sigs/external-dns/pull/4049)
- fix(httpProxy): drop status==valid filter by
[@&#8203;nefelim4ag](https://togithub.com/nefelim4ag) in
[https://github.com/kubernetes-sigs/external-dns/pull/3978](https://togithub.com/kubernetes-sigs/external-dns/pull/3978)
- doc: added --infoblox-view argument to Infoblox documentation by
[@&#8203;tanerm](https://togithub.com/tanerm) in
[https://github.com/kubernetes-sigs/external-dns/pull/4036](https://togithub.com/kubernetes-sigs/external-dns/pull/4036)
- fix: regression on scaleway provider in 0.14.0 by
[@&#8203;M0NsTeRRR](https://togithub.com/M0NsTeRRR) in
[https://github.com/kubernetes-sigs/external-dns/pull/4039](https://togithub.com/kubernetes-sigs/external-dns/pull/4039)
- Add GleSYS to the readme for webhooks by
[@&#8203;glesys-andreas](https://togithub.com/glesys-andreas) in
[https://github.com/kubernetes-sigs/external-dns/pull/4054](https://togithub.com/kubernetes-sigs/external-dns/pull/4054)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4057](https://togithub.com/kubernetes-sigs/external-dns/pull/4057)
- feat: make webhook httpapi reusable by
[@&#8203;mrueg](https://togithub.com/mrueg) in
[https://github.com/kubernetes-sigs/external-dns/pull/4065](https://togithub.com/kubernetes-sigs/external-dns/pull/4065)
- Make routegroup client IPv6 compatible by
[@&#8203;mikkeloscar](https://togithub.com/mikkeloscar) in
[https://github.com/kubernetes-sigs/external-dns/pull/4068](https://togithub.com/kubernetes-sigs/external-dns/pull/4068)
- doc: fix link to ionos webhook provider by
[@&#8203;akrieg-ionos](https://togithub.com/akrieg-ionos) in
[https://github.com/kubernetes-sigs/external-dns/pull/4031](https://togithub.com/kubernetes-sigs/external-dns/pull/4031)
- feat(chart): Added complex provider support by
[@&#8203;stevehipwell](https://togithub.com/stevehipwell) in
[https://github.com/kubernetes-sigs/external-dns/pull/4085](https://togithub.com/kubernetes-sigs/external-dns/pull/4085)
- chore: update 45 go modules dependancies by
[@&#8203;mloiseleur](https://togithub.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4088](https://togithub.com/kubernetes-sigs/external-dns/pull/4088)
- webhook: Move httpapi into own package by
[@&#8203;mrueg](https://togithub.com/mrueg) in
[https://github.com/kubernetes-sigs/external-dns/pull/4084](https://togithub.com/kubernetes-sigs/external-dns/pull/4084)
- doc: Add netcup webhook provider by
[@&#8203;mrueg](https://togithub.com/mrueg) in
[https://github.com/kubernetes-sigs/external-dns/pull/4095](https://togithub.com/kubernetes-sigs/external-dns/pull/4095)
- build(deps): bump the dev-dependencies group with 3 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4097](https://togithub.com/kubernetes-sigs/external-dns/pull/4097)
- update to add il-central-1 by
[@&#8203;theloneexplorerquest](https://togithub.com/theloneexplorerquest)
in
[https://github.com/kubernetes-sigs/external-dns/pull/4093](https://togithub.com/kubernetes-sigs/external-dns/pull/4093)
- Add readme bizflycloud webhook provider by
[@&#8203;huyduong2792](https://togithub.com/huyduong2792) in
[https://github.com/kubernetes-sigs/external-dns/pull/4079](https://togithub.com/kubernetes-sigs/external-dns/pull/4079)
- fix: Allow revisionHistoryLimit to be set to 0 by
[@&#8203;bodgit](https://togithub.com/bodgit) in
[https://github.com/kubernetes-sigs/external-dns/pull/4053](https://togithub.com/kubernetes-sigs/external-dns/pull/4053)
- helm: Avoid unnecessary pod restart on each helm chart version by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/kubernetes-sigs/external-dns/pull/4103](https://togithub.com/kubernetes-sigs/external-dns/pull/4103)
- Correct typo from 'Kuberntes' to 'Kubernetes' by
[@&#8203;jongwooo](https://togithub.com/jongwooo) in
[https://github.com/kubernetes-sigs/external-dns/pull/4118](https://togithub.com/kubernetes-sigs/external-dns/pull/4118)
- build(deps): bump golang.org/x/crypto from 0.16.0 to 0.17.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4123](https://togithub.com/kubernetes-sigs/external-dns/pull/4123)
- cleanup: remove dead code (`(Create|Update|Delete)Records` functions
in AWS, Google, DNSimple) by
[@&#8203;mloiseleur](https://togithub.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4129](https://togithub.com/kubernetes-sigs/external-dns/pull/4129)
- ci: remove `confusing-naming` property by
[@&#8203;PascalBourdier](https://togithub.com/PascalBourdier) in
[https://github.com/kubernetes-sigs/external-dns/pull/4116](https://togithub.com/kubernetes-sigs/external-dns/pull/4116)
- chore: fix code comment by
[@&#8203;tanujd11](https://togithub.com/tanujd11) in
[https://github.com/kubernetes-sigs/external-dns/pull/4131](https://togithub.com/kubernetes-sigs/external-dns/pull/4131)
- fix: include cloudflare error in metrics and logs by
[@&#8203;danie1sullivan](https://togithub.com/danie1sullivan) in
[https://github.com/kubernetes-sigs/external-dns/pull/4082](https://togithub.com/kubernetes-sigs/external-dns/pull/4082)
- gateway-api: fix wildcard matching by
[@&#8203;abursavich](https://togithub.com/abursavich) in
[https://github.com/kubernetes-sigs/external-dns/pull/4124](https://togithub.com/kubernetes-sigs/external-dns/pull/4124)
- build(deps): bump the dev-dependencies group with 23 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4134](https://togithub.com/kubernetes-sigs/external-dns/pull/4134)
- Hetzner webhook provider readme link by
[@&#8203;mconfalonieri](https://togithub.com/mconfalonieri) in
[https://github.com/kubernetes-sigs/external-dns/pull/4051](https://togithub.com/kubernetes-sigs/external-dns/pull/4051)
- Fix timeout for traefik-proxy source by
[@&#8203;k8r-io](https://togithub.com/k8r-io) in
[https://github.com/kubernetes-sigs/external-dns/pull/4076](https://togithub.com/kubernetes-sigs/external-dns/pull/4076)
- build(deps): bump the dev-dependencies group with 7 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4144](https://togithub.com/kubernetes-sigs/external-dns/pull/4144)
- fix: remove useless functions by
[@&#8203;PascalBourdier](https://togithub.com/PascalBourdier) in
[https://github.com/kubernetes-sigs/external-dns/pull/4115](https://togithub.com/kubernetes-sigs/external-dns/pull/4115)
- fix(ambassador): don't resolve LB hostname by
[@&#8203;fad3t](https://togithub.com/fad3t) in
[https://github.com/kubernetes-sigs/external-dns/pull/4092](https://togithub.com/kubernetes-sigs/external-dns/pull/4092)
- doc(azure): shows how to use userAssignedIdentityID with clientId in
azure.json by [@&#8203;thesse1](https://togithub.com/thesse1) in
[https://github.com/kubernetes-sigs/external-dns/pull/4133](https://togithub.com/kubernetes-sigs/external-dns/pull/4133)
- build(deps): bump the dev-dependencies group with 4 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4146](https://togithub.com/kubernetes-sigs/external-dns/pull/4146)
- webhook: Fix metric name and add request gauges by
[@&#8203;mrueg](https://togithub.com/mrueg) in
[https://github.com/kubernetes-sigs/external-dns/pull/4078](https://togithub.com/kubernetes-sigs/external-dns/pull/4078)
- build(deps): bump the dev-dependencies group with 2 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4145](https://togithub.com/kubernetes-sigs/external-dns/pull/4145)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4154](https://togithub.com/kubernetes-sigs/external-dns/pull/4154)
- fix: heritage txt record was not able to be created for txt record by
[@&#8203;tanujd11](https://togithub.com/tanujd11) in
[https://github.com/kubernetes-sigs/external-dns/pull/4140](https://togithub.com/kubernetes-sigs/external-dns/pull/4140)
- build(deps): bump the dev-dependencies group with 9 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4155](https://togithub.com/kubernetes-sigs/external-dns/pull/4155)
- fix(istio): support for ExternalIPs in Istio resources by
[@&#8203;KarstenSiemer](https://togithub.com/KarstenSiemer) in
[https://github.com/kubernetes-sigs/external-dns/pull/4094](https://togithub.com/kubernetes-sigs/external-dns/pull/4094)
- Update rfc2136 provider to split out changes per zone by
[@&#8203;gregsidelinger](https://togithub.com/gregsidelinger) in
[https://github.com/kubernetes-sigs/external-dns/pull/4107](https://togithub.com/kubernetes-sigs/external-dns/pull/4107)
- Exoscale provider optimization by
[@&#8203;kobajagi](https://togithub.com/kobajagi) in
[https://github.com/kubernetes-sigs/external-dns/pull/4071](https://togithub.com/kubernetes-sigs/external-dns/pull/4071)
- fix: godaddy - rate limiter add one token every second by
[@&#8203;nefelim4ag](https://togithub.com/nefelim4ag) in
[https://github.com/kubernetes-sigs/external-dns/pull/4087](https://togithub.com/kubernetes-sigs/external-dns/pull/4087)
- feat(helm-chart): Allow configuration of ipFamilyPolicy by
[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in
[https://github.com/kubernetes-sigs/external-dns/pull/4153](https://togithub.com/kubernetes-sigs/external-dns/pull/4153)
- chore(chart): Deprecated secretConfiguration by
[@&#8203;stevehipwell](https://togithub.com/stevehipwell) in
[https://github.com/kubernetes-sigs/external-dns/pull/4161](https://togithub.com/kubernetes-sigs/external-dns/pull/4161)
- feat: support webhook provider in Chart by
[@&#8203;mloiseleur](https://togithub.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4032](https://togithub.com/kubernetes-sigs/external-dns/pull/4032)
- feat(helm-chart): Released chart for v0.14.0 by
[@&#8203;appkins](https://togithub.com/appkins) in
[https://github.com/kubernetes-sigs/external-dns/pull/4073](https://togithub.com/kubernetes-sigs/external-dns/pull/4073)
- chore(chart): Fixed chart changelog by
[@&#8203;stevehipwell](https://togithub.com/stevehipwell) in
[https://github.com/kubernetes-sigs/external-dns/pull/4168](https://togithub.com/kubernetes-sigs/external-dns/pull/4168)
- fix(pdns): provider implicitly changes CNAME to ALIAS by
[@&#8203;tmaroschik](https://togithub.com/tmaroschik) in
[https://github.com/kubernetes-sigs/external-dns/pull/4162](https://togithub.com/kubernetes-sigs/external-dns/pull/4162)
- fix(chart): Fix webhook install failure by
[@&#8203;gabe565](https://togithub.com/gabe565) in
[https://github.com/kubernetes-sigs/external-dns/pull/4173](https://togithub.com/kubernetes-sigs/external-dns/pull/4173)
- fix: provide possibility to have a soft error mode by
[@&#8203;szuecs](https://togithub.com/szuecs) in
[https://github.com/kubernetes-sigs/external-dns/pull/4166](https://togithub.com/kubernetes-sigs/external-dns/pull/4166)
- \[helm] Allow tpl in provider again by
[@&#8203;jkroepke](https://togithub.com/jkroepke) in
[https://github.com/kubernetes-sigs/external-dns/pull/4180](https://togithub.com/kubernetes-sigs/external-dns/pull/4180)
- Fix args for webhook deployment by
[@&#8203;webwurst](https://togithub.com/webwurst) in
[https://github.com/kubernetes-sigs/external-dns/pull/4202](https://togithub.com/kubernetes-sigs/external-dns/pull/4202)
- add RBAC fix to namespaces - get, watch, list to each gateway-\*route
by [@&#8203;orenlevi111](https://togithub.com/orenlevi111) in
[https://github.com/kubernetes-sigs/external-dns/pull/4205](https://togithub.com/kubernetes-sigs/external-dns/pull/4205)
- chore: Released chart v1.14.3 by
[@&#8203;stevehipwell](https://togithub.com/stevehipwell) in
[https://github.com/kubernetes-sigs/external-dns/pull/4208](https://togithub.com/kubernetes-sigs/external-dns/pull/4208)
- build(deps): bump the dev-dependencies group with 24 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4227](https://togithub.com/kubernetes-sigs/external-dns/pull/4227)
- Fix "workload identity" spelling by
[@&#8203;gdubicki](https://togithub.com/gdubicki) in
[https://github.com/kubernetes-sigs/external-dns/pull/4201](https://togithub.com/kubernetes-sigs/external-dns/pull/4201)
- feat(aws-provider): create flag to support sub-domains match parent by
[@&#8203;thiagoluiznunes](https://togithub.com/thiagoluiznunes) in
[https://github.com/kubernetes-sigs/external-dns/pull/4236](https://togithub.com/kubernetes-sigs/external-dns/pull/4236)
- Change coredns testing to fix failing tests by
[@&#8203;pascalgn](https://togithub.com/pascalgn) in
[https://github.com/kubernetes-sigs/external-dns/pull/4245](https://togithub.com/kubernetes-sigs/external-dns/pull/4245)
- Validate AWS record values size during batch set generation by
[@&#8203;megum1n](https://togithub.com/megum1n) in
[https://github.com/kubernetes-sigs/external-dns/pull/4126](https://togithub.com/kubernetes-sigs/external-dns/pull/4126)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4222](https://togithub.com/kubernetes-sigs/external-dns/pull/4222)
- build(deps): bump the dev-dependencies group with 13 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4246](https://togithub.com/kubernetes-sigs/external-dns/pull/4246)
- Update link to current workshop by
[@&#8203;AndrewCharlesHay](https://togithub.com/AndrewCharlesHay) in
[https://github.com/kubernetes-sigs/external-dns/pull/4170](https://togithub.com/kubernetes-sigs/external-dns/pull/4170)
- cleanup: Drop additional docker files by
[@&#8203;mrueg](https://togithub.com/mrueg) in
[https://github.com/kubernetes-sigs/external-dns/pull/4182](https://togithub.com/kubernetes-sigs/external-dns/pull/4182)
- chore: update the slack channel URL into the github support template
by [@&#8203;angegar](https://togithub.com/angegar) in
[https://github.com/kubernetes-sigs/external-dns/pull/3815](https://togithub.com/kubernetes-sigs/external-dns/pull/3815)
- add soft error by
[@&#8203;jeanfrancoislelezec](https://togithub.com/jeanfrancoislelezec)
in
[https://github.com/kubernetes-sigs/external-dns/pull/4199](https://togithub.com/kubernetes-sigs/external-dns/pull/4199)
- Fix Gateway API TLS TCP Route by
[@&#8203;zs-ko](https://togithub.com/zs-ko) in
[https://github.com/kubernetes-sigs/external-dns/pull/4213](https://togithub.com/kubernetes-sigs/external-dns/pull/4213)
- Update the OCI Provider to incorporate SoftError to avoid
CrashLoopBackoff by [@&#8203;jrosinsk](https://togithub.com/jrosinsk) in
[https://github.com/kubernetes-sigs/external-dns/pull/4229](https://togithub.com/kubernetes-sigs/external-dns/pull/4229)
- Add Gcore provider on readme by
[@&#8203;kokizzu](https://togithub.com/kokizzu) in
[https://github.com/kubernetes-sigs/external-dns/pull/4256](https://togithub.com/kubernetes-sigs/external-dns/pull/4256)
- feat: enable Azure subscription ID override by
[@&#8203;pascalgn](https://togithub.com/pascalgn) in
[https://github.com/kubernetes-sigs/external-dns/pull/4186](https://togithub.com/kubernetes-sigs/external-dns/pull/4186)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4254](https://togithub.com/kubernetes-sigs/external-dns/pull/4254)
- feat: allow setting dnsConfig by
[@&#8203;davhdavh](https://togithub.com/davhdavh) in
[https://github.com/kubernetes-sigs/external-dns/pull/4265](https://togithub.com/kubernetes-sigs/external-dns/pull/4265)
- build(deps): bump the dev-dependencies group with 17 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4270](https://togithub.com/kubernetes-sigs/external-dns/pull/4270)
- build(deps): bump the dev-dependencies group with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4269](https://togithub.com/kubernetes-sigs/external-dns/pull/4269)
- build(deps): bump the dev-dependencies group with 6 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4279](https://togithub.com/kubernetes-sigs/external-dns/pull/4279)
- docs: 📝 add Azure DNS w/workload identity blog post to readme by
[@&#8203;krukowskid](https://togithub.com/krukowskid) in
[https://github.com/kubernetes-sigs/external-dns/pull/4248](https://togithub.com/kubernetes-sigs/external-dns/pull/4248)
- feat(gandi): add support for personal access token by
[@&#8203;deadlybore](https://togithub.com/deadlybore) in
[https://github.com/kubernetes-sigs/external-dns/pull/4249](https://togithub.com/kubernetes-sigs/external-dns/pull/4249)
- RFC2136: Add support for DNS-over-TLS by
[@&#8203;iteratee](https://togithub.com/iteratee) in
[https://github.com/kubernetes-sigs/external-dns/pull/3974](https://togithub.com/kubernetes-sigs/external-dns/pull/3974)
- Fixing NAPTR support by
[@&#8203;jstudler](https://togithub.com/jstudler) in
[https://github.com/kubernetes-sigs/external-dns/pull/4212](https://togithub.com/kubernetes-sigs/external-dns/pull/4212)
- doc: explain how to use Azure internal load balancer by
[@&#8203;mloiseleur](https://togithub.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4252](https://togithub.com/kubernetes-sigs/external-dns/pull/4252)
- fix(aws): allow alias records to be created when using the alias
annotation by [@&#8203;papayakiwi](https://togithub.com/papayakiwi) in
[https://github.com/kubernetes-sigs/external-dns/pull/4178](https://togithub.com/kubernetes-sigs/external-dns/pull/4178)
- fix(service): omit nil endpoints and prefer endpointsForHostname() by
[@&#8203;yurrriq](https://togithub.com/yurrriq) in
[https://github.com/kubernetes-sigs/external-dns/pull/4293](https://togithub.com/kubernetes-sigs/external-dns/pull/4293)
- chore: update maintainers by
[@&#8203;mloiseleur](https://togithub.com/mloiseleur) in
[https://github.com/kubernetes-sigs/external-dns/pull/4304](https://togithub.com/kubernetes-sigs/external-dns/pull/4304)
- build(deps): bump the dev-dependencies group with 21 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4307](https://togithub.com/kubernetes-sigs/external-dns/pull/4307)
- build(deps): bump the dev-dependencies group with 6 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4312](https://togithub.com/kubernetes-sigs/external-dns/pull/4312)
- feat(ambassador): add support for provider specific annotations by
[@&#8203;fad3t](https://togithub.com/fad3t) in
[https://github.com/kubernetes-sigs/external-dns/pull/4120](https://togithub.com/kubernetes-sigs/external-dns/pull/4120)
- build(deps): bump the dev-dependencies group with 8 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4313](https://togithub.com/kubernetes-sigs/external-dns/pull/4313)
- build(deps): bump the dev-dependencies group with 2 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4314](https://togithub.com/kubernetes-sigs/external-dns/pull/4314)
- build(deps): bump the dev-dependencies group with 14 updates by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/kubernetes-sigs/external-dns/pull/4321](https://togithub.com/kubernetes-sigs/external-dns/pull/4321)

#### Docker image

    registry.k8s.io/external-dns/external-dns:v0.14.0

#### New Contributors

- [@&#8203;muhlba91](https://togithub.com/muhlba91) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4030](https://togithub.com/kubernetes-sigs/external-dns/pull/4030)
- [@&#8203;sesoldi](https://togithub.com/sesoldi) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4009](https://togithub.com/kubernetes-sigs/external-dns/pull/4009)
- [@&#8203;larivierec](https://togithub.com/larivierec) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4019](https://togithub.com/kubernetes-sigs/external-dns/pull/4019)
- [@&#8203;PatrickKoss](https://togithub.com/PatrickKoss) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4029](https://togithub.com/kubernetes-sigs/external-dns/pull/4029)
- [@&#8203;robinschneider](https://togithub.com/robinschneider) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4022](https://togithub.com/kubernetes-sigs/external-dns/pull/4022)
- [@&#8203;anders-swanson](https://togithub.com/anders-swanson) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/3995](https://togithub.com/kubernetes-sigs/external-dns/pull/3995)
- [@&#8203;CRASH-Tech](https://togithub.com/CRASH-Tech) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/3976](https://togithub.com/kubernetes-sigs/external-dns/pull/3976)
- [@&#8203;danie1sullivan](https://togithub.com/danie1sullivan) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4021](https://togithub.com/kubernetes-sigs/external-dns/pull/4021)
- [@&#8203;arnisoph](https://togithub.com/arnisoph) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4008](https://togithub.com/kubernetes-sigs/external-dns/pull/4008)
- [@&#8203;dromie](https://togithub.com/dromie) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4007](https://togithub.com/kubernetes-sigs/external-dns/pull/4007)
- [@&#8203;siliconsheep](https://togithub.com/siliconsheep) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4048](https://togithub.com/kubernetes-sigs/external-dns/pull/4048)
- [@&#8203;tanerm](https://togithub.com/tanerm) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4036](https://togithub.com/kubernetes-sigs/external-dns/pull/4036)
- [@&#8203;glesys-andreas](https://togithub.com/glesys-andreas) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4054](https://togithub.com/kubernetes-sigs/external-dns/pull/4054)
- [@&#8203;akrieg-ionos](https://togithub.com/akrieg-ionos) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4031](https://togithub.com/kubernetes-sigs/external-dns/pull/4031)
-
[@&#8203;theloneexplorerquest](https://togithub.com/theloneexplorerquest)
made their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4093](https://togithub.com/kubernetes-sigs/external-dns/pull/4093)
- [@&#8203;huyduong2792](https://togithub.com/huyduong2792) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4079](https://togithub.com/kubernetes-sigs/external-dns/pull/4079)
- [@&#8203;tanujd11](https://togithub.com/tanujd11) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4131](https://togithub.com/kubernetes-sigs/external-dns/pull/4131)
- [@&#8203;mconfalonieri](https://togithub.com/mconfalonieri) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4051](https://togithub.com/kubernetes-sigs/external-dns/pull/4051)
- [@&#8203;k8r-io](https://togithub.com/k8r-io) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4076](https://togithub.com/kubernetes-sigs/external-dns/pull/4076)
- [@&#8203;thesse1](https://togithub.com/thesse1) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4133](https://togithub.com/kubernetes-sigs/external-dns/pull/4133)
- [@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4153](https://togithub.com/kubernetes-sigs/external-dns/pull/4153)
- [@&#8203;appkins](https://togithub.com/appkins) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4073](https://togithub.com/kubernetes-sigs/external-dns/pull/4073)
- [@&#8203;tmaroschik](https://togithub.com/tmaroschik) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4162](https://togithub.com/kubernetes-sigs/external-dns/pull/4162)
- [@&#8203;gabe565](https://togithub.com/gabe565) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4173](https://togithub.com/kubernetes-sigs/external-dns/pull/4173)
- [@&#8203;webwurst](https://togithub.com/webwurst) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4202](https://togithub.com/kubernetes-sigs/external-dns/pull/4202)
- [@&#8203;orenlevi111](https://togithub.com/orenlevi111) made their
first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4205](https://togithub.com/kubernetes-sigs/external-dns/pull/4205)
- [@&#8203;gdubicki](https://togithub.com/gdubicki) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4201](https://togithub.com/kubernetes-sigs/external-dns/pull/4201)
- [@&#8203;thiagoluiznunes](https://togithub.com/thiagoluiznunes) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4236](https://togithub.com/kubernetes-sigs/external-dns/pull/4236)
- [@&#8203;AndrewCharlesHay](https://togithub.com/AndrewCharlesHay) made
their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4170](https://togithub.com/kubernetes-sigs/external-dns/pull/4170)
- [@&#8203;angegar](https://togithub.com/angegar) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/3815](https://togithub.com/kubernetes-sigs/external-dns/pull/3815)
-
[@&#8203;jeanfrancoislelezec](https://togithub.com/jeanfrancoislelezec)
made their first contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4199](https://togithub.com/kubernetes-sigs/external-dns/pull/4199)
- [@&#8203;zs-ko](https://togithub.com/zs-ko) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4213](https://togithub.com/kubernetes-sigs/external-dns/pull/4213)
- [@&#8203;kokizzu](https://togithub.com/kokizzu) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4256](https://togithub.com/kubernetes-sigs/external-dns/pull/4256)
- [@&#8203;davhdavh](https://togithub.com/davhdavh) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4265](https://togithub.com/kubernetes-sigs/external-dns/pull/4265)
- [@&#8203;krukowskid](https://togithub.com/krukowskid) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4248](https://togithub.com/kubernetes-sigs/external-dns/pull/4248)
- [@&#8203;deadlybore](https://togithub.com/deadlybore) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4249](https://togithub.com/kubernetes-sigs/external-dns/pull/4249)
- [@&#8203;iteratee](https://togithub.com/iteratee) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/3974](https://togithub.com/kubernetes-sigs/external-dns/pull/3974)
- [@&#8203;jstudler](https://togithub.com/jstudler) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4212](https://togithub.com/kubernetes-sigs/external-dns/pull/4212)
- [@&#8203;papayakiwi](https://togithub.com/papayakiwi) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4178](https://togithub.com/kubernetes-sigs/external-dns/pull/4178)
- [@&#8203;yurrriq](https://togithub.com/yurrriq) made their first
contribution in
[https://github.com/kubernetes-sigs/external-dns/pull/4293](https://togithub.com/kubernetes-sigs/external-dns/pull/4293)

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

</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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI2NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
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/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.

Set service status for pre existing ALB istio-virtualservice does not create entries in Infoblox
4 participants