Skip to content

feat(aws): add support for geoproximity routing#5347

Merged
k8s-ci-robot merged 11 commits intokubernetes-sigs:masterfrom
prasadkatti:geoproximity
Jul 3, 2025
Merged

feat(aws): add support for geoproximity routing#5347
k8s-ci-robot merged 11 commits intokubernetes-sigs:masterfrom
prasadkatti:geoproximity

Conversation

@prasadkatti
Copy link
Copy Markdown
Contributor

@prasadkatti prasadkatti commented May 1, 2025

Description

This PR adds support for Geoproximity routing in route53 to the AWS provider.

It adds four new annotations to enable this support.

Testing done

  1. I created a hosted zone called example.test
  2. Applied the manifests below to my cluster
  3. Ran a single control loop of external-dns locally
  4. Verified on the AWS console that new records for the services were created
  5. Deleted the services
  6. Ran another loop of external-dns
  7. Verified the records were deleted from Route53.

Also did some more testing along these lines to ensure there are no unnecessary Upserts when the service isn't changed.

I used these service manifests for testing -

apiVersion: v1
kind: Service
metadata:
  name: nginx-test-region
  annotations:
    external-dns.alpha.kubernetes.io/hostname: nginx-test.example.test
    external-dns.alpha.kubernetes.io/target: 8.8.8.8
    external-dns.alpha.kubernetes.io/set-identifier: region
    external-dns.alpha.kubernetes.io/aws-geoproximitylocation-aws-region: us-west-2
    external-dns.alpha.kubernetes.io/aws-geoproximitylocation-bias: "10"
spec:
  ports:
  - port: 80
    targetPort: 80
  selector:
    app: nginx

---

apiVersion: v1
kind: Service
metadata:
  name: nginx-test-coordinates
  annotations:
    external-dns.alpha.kubernetes.io/hostname: nginx-test.example.test
    external-dns.alpha.kubernetes.io/target: 8.8.8.8
    external-dns.alpha.kubernetes.io/set-identifier: coordinates
    external-dns.alpha.kubernetes.io/aws-geoproximitylocation-coordinates: 90,90
spec:
  ports:
  - port: 80
    targetPort: 80
  selector:
    app: nginx

---

# I didn't test this one, but it should work

# apiVersion: v1
# kind: Service
# metadata:
#   name: nginx-test-local-zone
#   annotations:
#     external-dns.alpha.kubernetes.io/hostname: nginx-test.example.test
#     external-dns.alpha.kubernetes.io/target: 8.8.8.8
#     external-dns.alpha.kubernetes.io/set-identifier: localzone
#     external-dns.alpha.kubernetes.io/aws-geoproximitylocation-local-zone-group: "usw2-pdx1-az1"
# spec:
#   ports:
#   - port: 80
#     targetPort: 80
#   selector:
#     app: nginx

Fixes #4927

Checklist

  • Unit tests updated
  • End user documentation updated. Haven't yet updated the docs. Will get to it once my others questions get resolved.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label May 1, 2025
@k8s-ci-robot k8s-ci-robot requested a review from mloiseleur May 1, 2025 06:17
@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label May 1, 2025
@k8s-ci-robot
Copy link
Copy Markdown
Contributor

Hi @prasadkatti. 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.

Details

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-sigs/prow repository.

@prasadkatti prasadkatti marked this pull request as draft May 1, 2025 06:17
@k8s-ci-robot k8s-ci-robot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels May 1, 2025
@prasadkatti prasadkatti marked this pull request as ready for review May 1, 2025 06:51
@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 May 1, 2025
@ivankatliarchuk
Copy link
Copy Markdown
Member

/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 May 1, 2025
@ivankatliarchuk
Copy link
Copy Markdown
Member

For this to review

  • shared how it was tested with results
  • share kubernetes manifests so that we could validate that as well

Copy link
Copy Markdown
Member

@ivankatliarchuk ivankatliarchuk left a comment

Choose a reason for hiding this comment

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

pls share code coverage for new code as well

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

aws-region not required, just region

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I have tried to match it with the field names in the GeoProximityLocation type

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

aws/geoproximitylocation-aws-region

does not looks right

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

what if geoproximity not enabled? why we even have it here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Honestly, I looked at how Geolocation works and tried to follow suit.

If there are no annotations corresponding to GeoProximity, then the GeoProximityLocation field of the ResourceRecordSet just stays nil. The field is populated iff any of the geoproximity annotations are seen.

Also, I wish there was a separate annotation for specifying routing policy. But since that isn't present, I have to check for the presence of all possible geoproximity annotations before I can definitively say that the record is not using geoproximity.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This way it could be a breaking change, so unsure

@prasadkatti
Copy link
Copy Markdown
Contributor Author

@ivankatliarchuk - First of all, thanks for the taking the time to review. I have pushed another commit to address some of your review comments. I have also updated the PR description to include the manifests used for testing this. Let me know if you need anything else.

I am still trying to figure out how to get code coverage for just the files I touched. I ran make cover-html and that shows me that I have added good coverage for the lines I added. I don't know how to share that with you.

Copy link
Copy Markdown
Member

@ivankatliarchuk ivankatliarchuk left a comment

Choose a reason for hiding this comment

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

would be nice to add docs with example setup and links to AWS docs.

https://github.com/kubernetes-sigs/external-dns/blob/master/docs/tutorials/aws.md

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This is debatable, but most likely should be log.Warn, to warn user so they need to change configuraiton

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I feel an Errorf here is okay, because the user is going to expect e-dns to create those records but it won't. That object with the invalid coordinates is just going to fail to reconcile.
We are also using an Errorf here even when the record will get created.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Warning please, we will correct this in follow up if needed

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I'm not sure if I agree with the coding style, where methods with same prefix with* have different return types bool,none and have side effects with logging errors.

If there is an error, so we most likely do need to return an error, as we have concepts of soft erorrs as well, and we capture them in metrics

@k8s-ci-robot k8s-ci-robot added the provider Issues or PRs related to a provider label Jun 2, 2025
@ivankatliarchuk
Copy link
Copy Markdown
Member

Any chance you share here a result of a smoke test? With geoproximity and without geoproximity settings, share relevant kube manifests as well pls. Does it require AWS IAM specific actions?

Docs needs updating as well https://github.com/kubernetes-sigs/external-dns/blob/master/docs/tutorials/aws.md

@ivankatliarchuk
Copy link
Copy Markdown
Member

/label tide/merge-method-squash

@k8s-ci-robot k8s-ci-robot added the tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. label Jun 3, 2025
@prasadkatti
Copy link
Copy Markdown
Contributor Author

New changes -

  • updated the docs by adding the new annotations for geoproximity
  • added some more tests. The code coverage should be pretty good for the code that was updated.

Does it require AWS IAM specific actions?

No. It doesn't. It's just the same actions except the routing policy will be different.

Any chance you share here a result of a smoke test? With geoproximity and without geoproximity settings, share relevant kube manifests as well pls.

I have shared a manifest that I have been using for testing in the PR description. Let me know if that doesn't work for some reason. Here is a screenshot of the records that get added for those services in that manifest.
CleanShot 2025-06-09 at 01 24 31

Let me know if you need anything else from me at this point. Thanks so much for all your help so far @ivankatliarchuk !

@ivankatliarchuk
Copy link
Copy Markdown
Member

Nice one. Any chance you fix linter before we do a review?

Copy link
Copy Markdown
Member

@ivankatliarchuk ivankatliarchuk left a comment

Choose a reason for hiding this comment

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

Found few areas that require code coverage as well
Screenshot 2025-06-09 at 11 30 12
Screenshot 2025-06-09 at 11 30 21

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Warning please, we will correct this in follow up if needed

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This and similar methods contains too much of the side effects, return boolean, update endpoint and etc, etc.

Can we do it in more object oriented way, something like

type geoProximity {
  loc   *route53types.GeoProximityLocation
  ep.   *endpoint.Endpoint
  isSet bool
}

func (gp *geoproximity) withX() 
func (gp *geoproximity) withY() 
func (gp *geoproximity) withZ() 

and in the method

func withGeoProximityCoordinates ...
      ....
     change.ResourceRecordSet.GeoProximityLocation = geoProximity.build()

And add tests per each method for the private type geoProximity

This should simply operational support for us

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I'm not sure if I agree with the coding style, where methods with same prefix with* have different return types bool,none and have side effects with logging errors.

If there is an error, so we most likely do need to return an error, as we have concepts of soft erorrs as well, and we capture them in metrics

This commit addresses the review feedback by making the following changes:

- use a more object-oriented approach for geoProximity handling
- change log levels to warnings instead of errors
- add more test cases for geoProximity
@k8s-ci-robot k8s-ci-robot added size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Jun 27, 2025
@prasadkatti
Copy link
Copy Markdown
Contributor Author

New changes since last review:

  • used a more object oriented approach for handling geoproximity. Created a new private type for it.
  • used early return to reduce nesting
  • removed usage of magic numbers
  • updated log levels to warnings as suggested
  • added more tests to ensure good code coverage

This is ready for another review. Thanks!

Copy link
Copy Markdown
Member

@ivankatliarchuk ivankatliarchuk left a comment

Choose a reason for hiding this comment

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

/lgtm

cc: @mloiseleur

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Jun 27, 2025
@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Jun 30, 2025
@prasadkatti prasadkatti requested a review from mloiseleur June 30, 2025 07:44
@mloiseleur
Copy link
Copy Markdown
Collaborator

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Jul 3, 2025
@k8s-ci-robot
Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: mloiseleur

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details 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 Jul 3, 2025
@k8s-ci-robot k8s-ci-robot merged commit d79dd83 into kubernetes-sigs:master Jul 3, 2025
14 checks passed
troll-os pushed a commit to FiligranHQ/external-dns that referenced this pull request Aug 28, 2025
* feat(aws): add support for geoproximity routing

* remove the invalid test

* make some changes based on review comments

* fix linting errors

* make changes based on review feedback

* add more tests to get better coverage

* update docs

* make the linter happy

* address review feedback

This commit addresses the review feedback by making the following changes:

- use a more object-oriented approach for geoProximity handling
- change log levels to warnings instead of errors
- add more test cases for geoProximity

* fix linting error

* use shorter annotation names
JesusMtnez pushed a commit to JesusMtnez/homelab that referenced this pull request Dec 1, 2025
…o v0.19.0 (#805)

This PR contains the following updates:

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

---

### Release Notes

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

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

[Compare Source](kubernetes-sigs/external-dns@v0.18.0...v0.19.0)

#### General information

- :information\_source: CLI flags allows to set behavior of previous version on the two breaking changes included in this release, if needed.
- :information\_source: Thanks to [@&#8203;valerian-roche](https://github.com/valerian-roche), this version can reduce the *average* memory usage by \~10 times, see [#&#8203;5596](kubernetes-sigs/external-dns#5596)

#### ⚠️ Breaking Changes

- feat(nodes)!: expose external ipv6 by default by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5575](kubernetes-sigs/external-dns#5575)
- feat(traefik)!: disable legacy listeners on traefik.containo.us API Group by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5565](kubernetes-sigs/external-dns#5565)

#### 🚀 Features

- feat(aws): add support for ap-east-2 by [@&#8203;chemi0213](https://github.com/chemi0213) in [#&#8203;5638](kubernetes-sigs/external-dns#5638)
- feat(aws): add support for geoproximity routing by [@&#8203;prasadkatti](https://github.com/prasadkatti) in [#&#8203;5347](kubernetes-sigs/external-dns#5347)
- feat(azure): update Azure provider configuration and documentation by [@&#8203;antchand](https://github.com/antchand) in [#&#8203;5648](kubernetes-sigs/external-dns#5648)
- feat(chart): add option to configure annotationFilter via dedicated helm value by [@&#8203;dshatokhin](https://github.com/dshatokhin) in [#&#8203;5737](kubernetes-sigs/external-dns#5737)
- feat(events): raise k8s events with fake provider by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5659](kubernetes-sigs/external-dns#5659)
- feat(metrics): publish build\_info metric by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5643](kubernetes-sigs/external-dns#5643)
- feat(nodes)!: expose external ipv6 by default by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5575](kubernetes-sigs/external-dns#5575)
- feat(source/istio): support version 1.25+ by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5611](kubernetes-sigs/external-dns#5611)
- feat(source/pods): support for annotation and label filter by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5583](kubernetes-sigs/external-dns#5583)
- feat(source): support --event flags with sources pod and node by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5642](kubernetes-sigs/external-dns#5642)
- feat(source): use transformers in pod informers to reduce memory footprint by [@&#8203;valerian-roche](https://github.com/valerian-roche) in [#&#8203;5596](kubernetes-sigs/external-dns#5596)
- feat(traefik)!: disable legacy listeners on traefik.containo.us API Group by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5565](kubernetes-sigs/external-dns#5565)

#### 🐛 Bug fixes

- fix(api): rollback oas and update linter by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5723](kubernetes-sigs/external-dns#5723)
- fix(aws): support aws\_ca\_bundle by [@&#8203;mwmix](https://github.com/mwmix) in [#&#8203;5665](kubernetes-sigs/external-dns#5665)
- fix(chart): Change .extraContainers type to array by [@&#8203;svengreb](https://github.com/svengreb) in [#&#8203;5564](kubernetes-sigs/external-dns#5564)
- fix(cloudflare): display of action in logs by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5550](kubernetes-sigs/external-dns#5550)
- fix(cloudflare): set comments properly by [@&#8203;7onn](https://github.com/7onn) in [#&#8203;5582](kubernetes-sigs/external-dns#5582)
- fix(cloudflare): unnecessary record updates by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5770](kubernetes-sigs/external-dns#5770)
- fix(controller): panic in events.Controller.Add() by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5766](kubernetes-sigs/external-dns#5766)
- fix(docs): Fixing some errors in the dev-guide example. by [@&#8203;mwmix](https://github.com/mwmix) in [#&#8203;5662](kubernetes-sigs/external-dns#5662)
- fix(endpoint): domains handling with idna by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5685](kubernetes-sigs/external-dns#5685)
- fix(helm): resolve RBAC permissions for namespaced gateway sources by [@&#8203;u-kai](https://github.com/u-kai) in [#&#8203;5578](kubernetes-sigs/external-dns#5578)
- fix(helm): Update helm value schema to allow `create-only` policy type by [@&#8203;coltonhughes](https://github.com/coltonhughes) in [#&#8203;5627](kubernetes-sigs/external-dns#5627)
- fix(http): concurrent map read/write by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5753](kubernetes-sigs/external-dns#5753)
- fix(instrumented\_http): migrate to own http instrumenter by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5650](kubernetes-sigs/external-dns#5650)
- fix(metrics): make prometheus labels more type safe by [@&#8203;mwmix](https://github.com/mwmix) in [#&#8203;5717](kubernetes-sigs/external-dns#5717)
- fix(oas): add required properties to api components by [@&#8203;evilhamsterman](https://github.com/evilhamsterman) in [#&#8203;5696](kubernetes-sigs/external-dns#5696)
- fix(pihole): create record for all targets by [@&#8203;vkolobara](https://github.com/vkolobara) in [#&#8203;5584](kubernetes-sigs/external-dns#5584)
- fix(provider/aws): null pointer when records mailformed by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5639](kubernetes-sigs/external-dns#5639)
- fix(provider/aws-sd): fix namespace type filtering by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5682](kubernetes-sigs/external-dns#5682)
- fix(provider): IDNA awareness in the zone finder by [@&#8203;hanapedia](https://github.com/hanapedia) in [#&#8203;5705](kubernetes-sigs/external-dns#5705)
- fix(rbac): conditional endpointslices perms by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5746](kubernetes-sigs/external-dns#5746)
- fix: reduce warning by using idna profile by [@&#8203;szuecs](https://github.com/szuecs) in [#&#8203;5587](kubernetes-sigs/external-dns#5587)
- fix(rfc2136): Use correct index for accessing UpdateOld if there are multiple chunks by [@&#8203;schwajo](https://github.com/schwajo) in [#&#8203;5542](kubernetes-sigs/external-dns#5542)
- fix(source): respect --expose-internal-ipv6 flag on NodePort services by [@&#8203;jonasbadstuebner](https://github.com/jonasbadstuebner) in [#&#8203;5652](kubernetes-sigs/external-dns#5652)
- fix(source/service): disable node informer when not required by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5613](kubernetes-sigs/external-dns#5613)
- fix(source/service): disable pod and endpointSlices informers when they are not needed by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5646](kubernetes-sigs/external-dns#5646)
- fix(source/service): make sure only unique targets available for futher processing by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5614](kubernetes-sigs/external-dns#5614)
- fix(txt-registry): skip creation of already-existing TXT records ([#&#8203;4914](kubernetes-sigs/external-dns#4914)) by [@&#8203;u-kai](https://github.com/u-kai) in [#&#8203;5459](kubernetes-sigs/external-dns#5459)
- fix: zonefinder used wrong quotation style by [@&#8203;szuecs](https://github.com/szuecs) in [#&#8203;5588](kubernetes-sigs/external-dns#5588)

#### 📝 Documentation

- docs: add information on external webhook usage by [@&#8203;Raffo](https://github.com/Raffo) in [#&#8203;5606](kubernetes-sigs/external-dns#5606)
- docs: add new webhook provider SAKURA Cloud into README by [@&#8203;ippanpeople](https://github.com/ippanpeople) in [#&#8203;5784](kubernetes-sigs/external-dns#5784)
- docs(aws): add helm repo command to the tutorial by [@&#8203;raghu-manne](https://github.com/raghu-manne) in [#&#8203;5618](kubernetes-sigs/external-dns#5618)
- docs: fix typo in compatibility table by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5769](kubernetes-sigs/external-dns#5769)
- docs(istio): document ingress annotation by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5756](kubernetes-sigs/external-dns#5756)
- docs(providers): add Myra Security DNS to the list by [@&#8203;armaaar](https://github.com/armaaar) in [#&#8203;5671](kubernetes-sigs/external-dns#5671)
- docs(readme): update k8s compatiblity table by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5747](kubernetes-sigs/external-dns#5747)
- docs: remove substitution in AES keygen examples by [@&#8203;super-octo-spoon](https://github.com/super-octo-spoon) in [#&#8203;5686](kubernetes-sigs/external-dns#5686)
- docs(source/service): headless records and root/base domain by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5624](kubernetes-sigs/external-dns#5624)

#### 📦 Others

- chore(ci): improve releaser script by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5571](kubernetes-sigs/external-dns#5571)
- chore(ci): update labels automation by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5580](kubernetes-sigs/external-dns#5580)
- chore(cloudflare): migrate CreateDNSRecord() to new lib by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5779](kubernetes-sigs/external-dns#5779)
- chore(cloudflare): migrate DNSRecord to new lib struct by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5762](kubernetes-sigs/external-dns#5762)
- chore(cloudflare): rename zoneService fields by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5761](kubernetes-sigs/external-dns#5761)
- chore(cloudflare): upgrade library to v5 by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5734](kubernetes-sigs/external-dns#5734)
- chore(cloudflare): use lib v4 for regional services by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5609](kubernetes-sigs/external-dns#5609)
- chore(codebase): code reuse by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5607](kubernetes-sigs/external-dns#5607)
- chore(codebase): enable linter nonamedreturns by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5594](kubernetes-sigs/external-dns#5594)
- chore(codebase): remove pointer to an interface by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5625](kubernetes-sigs/external-dns#5625)
- chore(deps): bump github.com/cloudflare/cloudflare-go/v4 from 4.5.1 to 4.6.0 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5645](kubernetes-sigs/external-dns#5645)
- chore(deps): bump github.com/digitalocean/godo from 1.155.0 to 1.156.0 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5623](kubernetes-sigs/external-dns#5623)
- chore(deps): bump github.com/oracle/oci-go-sdk/v65 from 65.94.0 to 65.95.0 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5597](kubernetes-sigs/external-dns#5597)
- chore(deps): bump google.golang.org/api from 0.239.0 to 0.240.0 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5605](kubernetes-sigs/external-dns#5605)
- chore(deps): bump renovatebot/github-action from 43.0.1 to 43.0.2 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5592](kubernetes-sigs/external-dns#5592)
- chore(deps): bump renovatebot/github-action from 43.0.2 to 43.0.3 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5644](kubernetes-sigs/external-dns#5644)
- chore(deps): bump renovatebot/github-action from 43.0.4 to 43.0.5 in the dev-dependencies group by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5691](kubernetes-sigs/external-dns#5691)
- chore(deps): bump the dev-dependencies group across 1 directory with 10 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5760](kubernetes-sigs/external-dns#5760)
- chore(deps): bump the dev-dependencies group across 1 directory with 17 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5704](kubernetes-sigs/external-dns#5704)
- chore(deps): bump the dev-dependencies group across 1 directory with 17 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5726](kubernetes-sigs/external-dns#5726)
- chore(deps): bump the dev-dependencies group across 1 directory with 18 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5739](kubernetes-sigs/external-dns#5739)
- chore(deps): bump the dev-dependencies group across 1 directory with 2 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5667](kubernetes-sigs/external-dns#5667)
- chore(deps): bump the dev-dependencies group across 1 directory with 2 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5732](kubernetes-sigs/external-dns#5732)
- chore(deps): bump the dev-dependencies group across 1 directory with 2 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5759](kubernetes-sigs/external-dns#5759)
- chore(deps): bump the dev-dependencies group across 1 directory with 3 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5579](kubernetes-sigs/external-dns#5579)
- chore(deps): bump the dev-dependencies group across 1 directory with 5 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5690](kubernetes-sigs/external-dns#5690)
- chore(deps): bump the dev-dependencies group across 1 directory with 8 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5637](kubernetes-sigs/external-dns#5637)
- chore(deps): bump the dev-dependencies group across 1 directory with 8 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5658](kubernetes-sigs/external-dns#5658)
- chore(deps): bump the dev-dependencies group with 10 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5668](kubernetes-sigs/external-dns#5668)
- chore(deps): bump the dev-dependencies group with 2 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5610](kubernetes-sigs/external-dns#5610)
- chore(deps): bump the dev-dependencies group with 3 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5628](kubernetes-sigs/external-dns#5628)
- chore(deps): bump the dev-dependencies group with 4 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5593](kubernetes-sigs/external-dns#5593)
- chore(deps): bump the dev-dependencies group with 4 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5673](kubernetes-sigs/external-dns#5673)
- chore(deps): bump the dev-dependencies group with 9 updates by [@&#8203;app/dependabot](https://github.com/app/dependabot) in [#&#8203;5763](kubernetes-sigs/external-dns#5763)
- chore(deps): update golangci-lint version to v2.2.2 by [@&#8203;dongjiang1989](https://github.com/dongjiang1989) in [#&#8203;5670](kubernetes-sigs/external-dns#5670)
- chore(endpoint): fix typo by [@&#8203;bachorp](https://github.com/bachorp) in [#&#8203;5787](kubernetes-sigs/external-dns#5787)
- chore(github-actions): test execution with low resources by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5729](kubernetes-sigs/external-dns#5729)
- chore(github): enchance issue-template for bug-report by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5692](kubernetes-sigs/external-dns#5692)
- chore(helm): add rbac unit-tests for istio sources by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5752](kubernetes-sigs/external-dns#5752)
- chore(metrics): refactor metrics to use common registry by [@&#8203;mwmix](https://github.com/mwmix) in [#&#8203;5677](kubernetes-sigs/external-dns#5677)
- chore(plan): added tests for cases with asterisks by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5640](kubernetes-sigs/external-dns#5640)
- chore(provider/aws): reduce if-nesting for dryRun condition by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5688](kubernetes-sigs/external-dns#5688)
- chore: release chart for v0.18.0 by [@&#8203;elafarge](https://github.com/elafarge) in [#&#8203;5633](kubernetes-sigs/external-dns#5633)
- chore(release): updates kustomize & docs with v0.18.0 by [@&#8203;mloiseleur](https://github.com/mloiseleur) in [#&#8203;5573](kubernetes-sigs/external-dns#5573)
- chore(source/istio): replace kube API calls with caching and ingress informers by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5743](kubernetes-sigs/external-dns#5743)
- chore(source/net-filter): improve flow logic and add more tests by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5629](kubernetes-sigs/external-dns#5629)
- chore(source): reorganise sources and wrappers by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5598](kubernetes-sigs/external-dns#5598)
- chore(source): use types instead of strings by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5699](kubernetes-sigs/external-dns#5699)
- chore(store\*): add reduce complexity and improve code coverage by [@&#8203;AndrewCharlesHay](https://github.com/AndrewCharlesHay) in [#&#8203;5568](kubernetes-sigs/external-dns#5568)
- refactor(annotations): use common prefix to simplify filtering in informer transformers by [@&#8203;valerian-roche](https://github.com/valerian-roche) in [#&#8203;5621](kubernetes-sigs/external-dns#5621)
- refactor(cloudflare): use lib v4 for zone services by [@&#8203;AndrewCharlesHay](https://github.com/AndrewCharlesHay) in [#&#8203;5654](kubernetes-sigs/external-dns#5654)
- refactor(provider/cloudflare): use local regionalHostname struct by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5615](kubernetes-sigs/external-dns#5615)
- refactor(source): document and add debug information on wrappers by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5687](kubernetes-sigs/external-dns#5687)
- refactor(source/istio): add transformers by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5728](kubernetes-sigs/external-dns#5728)
- refactor: use slices.Contains instead of handrolled for loop by [@&#8203;szuecs](https://github.com/szuecs) in [#&#8203;5589](kubernetes-sigs/external-dns#5589)
- test: improve coverage on http and metrics by [@&#8203;mwmix](https://github.com/mwmix) in [#&#8203;5712](kubernetes-sigs/external-dns#5712)
- test(source/istio): add missing edge cases with tests by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in [#&#8203;5715](kubernetes-sigs/external-dns#5715)
- tests(source/crd): increase timeouts when it can randomly fails by [@&#8203;vflaux](https://github.com/vflaux) in [#&#8203;5785](kubernetes-sigs/external-dns#5785)

#### 📦 Docker Image

```
docker pull registry.k8s.io/external-dns/external-dns:v0.19.0
```

#### New Contributors

- [@&#8203;svengreb](https://github.com/svengreb) made their first contribution in [#&#8203;5564](kubernetes-sigs/external-dns#5564)
- [@&#8203;schwajo](https://github.com/schwajo) made their first contribution in [#&#8203;5542](kubernetes-sigs/external-dns#5542)
- [@&#8203;valerian-roche](https://github.com/valerian-roche) made their first contribution in [#&#8203;5621](kubernetes-sigs/external-dns#5621)
- [@&#8203;chemi0213](https://github.com/chemi0213) made their first contribution in [#&#8203;5638](kubernetes-sigs/external-dns#5638)
- [@&#8203;vkolobara](https://github.com/vkolobara) made their first contribution in [#&#8203;5584](kubernetes-sigs/external-dns#5584)
- [@&#8203;raghu-manne](https://github.com/raghu-manne) made their first contribution in [#&#8203;5618](kubernetes-sigs/external-dns#5618)
- [@&#8203;coltonhughes](https://github.com/coltonhughes) made their first contribution in [#&#8203;5627](kubernetes-sigs/external-dns#5627)
- [@&#8203;elafarge](https://github.com/elafarge) made their first contribution in [#&#8203;5633](kubernetes-sigs/external-dns#5633)
- [@&#8203;mwmix](https://github.com/mwmix) made their first contribution in [#&#8203;5662](kubernetes-sigs/external-dns#5662)
- [@&#8203;super-octo-spoon](https://github.com/super-octo-spoon) made their first contribution in [#&#8203;5686](kubernetes-sigs/external-dns#5686)
- [@&#8203;armaaar](https://github.com/armaaar) made their first contribution in [#&#8203;5671](kubernetes-sigs/external-dns#5671)
- [@&#8203;hanapedia](https://github.com/hanapedia) made their first contribution in [#&#8203;5705](kubernetes-sigs/external-dns#5705)
- [@&#8203;evilhamsterman](https://github.com/evilhamsterman) made their first contribution in [#&#8203;5696](kubernetes-sigs/external-dns#5696)
- [@&#8203;dshatokhin](https://github.com/dshatokhin) made their first contribution in [#&#8203;5737](kubernetes-sigs/external-dns#5737)
- [@&#8203;antchand](https://github.com/antchand) made their first contribution in [#&#8203;5648](kubernetes-sigs/external-dns#5648)
- [@&#8203;ippanpeople](https://github.com/ippanpeople) made their first contribution in [#&#8203;5784](kubernetes-sigs/external-dns#5784)
- [@&#8203;bachorp](https://github.com/bachorp) made their first contribution in [#&#8203;5787](kubernetes-sigs/external-dns#5787)

**Full Changelog**: <kubernetes-sigs/external-dns@v0.18.0...v0.19.0>

</details>

---

### Configuration

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

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiI0MS45My4yIiwidXBkYXRlZEluVmVyIjoiNDEuOTMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwL21pbm9yIl19-->

Reviewed-on: https://codeberg.org/JesusMtnez/homelab/pulls/805
Co-authored-by: JesusMtnez-bot <jesusmartinez93+bot@gmail.com>
Co-committed-by: JesusMtnez-bot <jesusmartinez93+bot@gmail.com>
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. docs 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. provider Issues or PRs related to a provider size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add support for Geoproximity routing in AWS Route 53 provider

4 participants