Skip to content

Commit 4910d30

Browse files
Merge remote-tracking branch 'refs/remotes/origin/feat-code-cleanup-0' into feat-code-cleanup-0
* refs/remotes/origin/feat-code-cleanup-0: fix(cloudflare): custom hostnames edge-cases causing duplicates (kubernetes-sigs#5183) feat(banner): standardize user agent and output (kubernetes-sigs#5154) feat: IDNA awareness in the zone finder (kubernetes-sigs#5147) chore(deps): bump the dev-dependencies group across 1 directory with 20 updates chore(deps): bump renovatebot/github-action feat(chart): Update image to v0.16.1 fix: correct route53 iam chore(deps): bump renovatebot/github-action feat(ovh): major rewriting of the provider (kubernetes-sigs#5143) Add Yandex Cloud Webhook chore(openstack designate)!: remove in-tree provider
2 parents f285cb1 + ba698e6 commit 4910d30

32 files changed

+1237
-1859
lines changed

.github/workflows/dependency-update.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/[email protected]
1818
# https://github.com/renovatebot/github-action
1919
- name: self-hosted renovate
20-
uses: renovatebot/[email protected].14
20+
uses: renovatebot/[email protected].17
2121
with:
2222
# https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication
2323
token: ${{ secrets.GITHUB_TOKEN }}

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@ IMAGE_STAGING = gcr.io/k8s-staging-external-dns/$(BINARY)
8888
REGISTRY ?= us.gcr.io/k8s-artifacts-prod/external-dns
8989
IMAGE ?= $(REGISTRY)/$(BINARY)
9090
VERSION ?= $(shell git describe --tags --always --dirty --match "v*")
91+
GIT_COMMIT ?= $(shell git rev-parse --short HEAD)
9192
BUILD_FLAGS ?= -v
9293
LDFLAGS ?= -X sigs.k8s.io/external-dns/pkg/apis/externaldns.Version=$(VERSION) -w -s
94+
LDFLAGS += -X sigs.k8s.io/external-dns/pkg/apis/externaldns.GitCommit=$(GIT_COMMIT)
9395
ARCH ?= amd64
9496
SHELL = /bin/bash
9597
IMG_PLATFORM ?= linux/amd64,linux/arm64,linux/arm/v7

README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ ExternalDNS allows you to keep selected zones (via `--domain-filter`) synchroniz
4949
- [CloudFlare](https://www.cloudflare.com/dns)
5050
- [DigitalOcean](https://www.digitalocean.com/products/networking)
5151
- [DNSimple](https://dnsimple.com/)
52-
- [OpenStack Designate](https://docs.openstack.org/designate/latest/)
5352
- [PowerDNS](https://www.powerdns.com/)
5453
- [CoreDNS](https://coredns.io/)
5554
- [Exoscale](https://www.exoscale.com/dns/)
@@ -58,7 +57,7 @@ ExternalDNS allows you to keep selected zones (via `--domain-filter`) synchroniz
5857
- [RFC2136](https://tools.ietf.org/html/rfc2136)
5958
- [NS1](https://ns1.com/)
6059
- [TransIP](https://www.transip.eu/domain-name/)
61-
- [OVH](https://www.ovh.com)
60+
- [OVHcloud](https://www.ovhcloud.com)
6261
- [Scaleway](https://www.scaleway.com)
6362
- [Akamai Edge DNS](https://learn.akamai.com/en-us/products/cloud_security/edge_dns.html)
6463
- [GoDaddy](https://www.godaddy.com)
@@ -86,7 +85,7 @@ See PR #3063 for all the discussions about it.
8685
Known providers using webhooks:
8786

8887
| Provider | Repo |
89-
|-----------------------|----------------------------------------------------------------------|
88+
| --------------------- | -------------------------------------------------------------------- |
9089
| Abion | https://github.com/abiondevelopment/external-dns-webhook-abion |
9190
| Adguard Home Provider | https://github.com/muhlba91/external-dns-provider-adguard |
9291
| Anexia | https://github.com/ProbstenHias/external-dns-anexia-webhook |
@@ -109,6 +108,7 @@ Known providers using webhooks:
109108
| STACKIT | https://github.com/stackitcloud/external-dns-stackit-webhook |
110109
| Unifi | https://github.com/kashalls/external-dns-unifi-webhook |
111110
| Vultr | https://github.com/vultr/external-dns-vultr-webhook |
111+
| Yandex Cloud | https://github.com/ismailbaskin/external-dns-yandex-webhook/ |
112112

113113
## Status of in-tree providers
114114

@@ -137,7 +137,6 @@ The following table clarifies the current status of the providers according to t
137137
| CloudFlare | Beta | |
138138
| DigitalOcean | Alpha | |
139139
| DNSimple | Alpha | |
140-
| OpenStack Designate | Alpha | |
141140
| PowerDNS | Alpha | |
142141
| CoreDNS | Alpha | |
143142
| Exoscale | Alpha | |
@@ -146,7 +145,7 @@ The following table clarifies the current status of the providers according to t
146145
| RFC2136 | Alpha | |
147146
| NS1 | Alpha | |
148147
| TransIP | Alpha | |
149-
| OVH | Alpha | |
148+
| OVHcloud | Beta | @rbeuque74 |
150149
| Scaleway DNS | Alpha | @Sh4d1 |
151150
| UltraDNS | Alpha | |
152151
| GoDaddy | Alpha | |
@@ -204,12 +203,11 @@ The following tutorials are provided:
204203
- [NS Record Creation with CRD Source](docs/sources/ns-record.md)
205204
- [MX Record Creation with CRD Source](docs/sources/mx-record.md)
206205
- [TXT Record Creation with CRD Source](docs/sources/txt-record.md)
207-
- [OpenStack Designate](docs/tutorials/designate.md)
208206
- [Oracle Cloud Infrastructure (OCI) DNS](docs/tutorials/oracle.md)
209207
- [PowerDNS](docs/tutorials/pdns.md)
210208
- [RFC2136](docs/tutorials/rfc2136.md)
211209
- [TransIP](docs/tutorials/transip.md)
212-
- [OVH](docs/tutorials/ovh.md)
210+
- [OVHcloud](docs/tutorials/ovh.md)
213211
- [Scaleway](docs/tutorials/scaleway.md)
214212
- [UltraDNS](docs/tutorials/ultradns.md)
215213
- [GoDaddy](docs/tutorials/godaddy.md)

charts/external-dns/CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
## [UNRELEASED]
2020

21+
## [v1.16.0] - 2025-03-20
22+
2123
### Added
2224

23-
- Added helm testing framework `helm plugin unittest`. ([#5137](https://github.com/kubernetes-sigs/external-dns/pull/5137)) _@ivankatliarchuk_
24-
- Added ability to generate schema with `helm plugin schema`. ([#5075](https://github.com/kubernetes-sigs/external-dns/pull/5075)) _@ivankatliarchuk_
25-
- Added `docs/contributing/dev-guide.md#helm-values` guide. ([#5075](https://github.com/kubernetes-sigs/external-dns/pull/5075)) _@ivankatliarchuk_
25+
- Add helm testing framework `helm plugin unittest`. ([#5137](https://github.com/kubernetes-sigs/external-dns/pull/5137)) _@ivankatliarchuk_
26+
- Add ability to generate schema with `helm plugin schema`. ([#5075](https://github.com/kubernetes-sigs/external-dns/pull/5075)) _@ivankatliarchuk_
27+
- Add `docs/contributing/dev-guide.md#helm-values` guide. ([#5075](https://github.com/kubernetes-sigs/external-dns/pull/5075)) _@ivankatliarchuk_
2628

2729
### Changed
2830

2931
- Regenerate JSON schema with `helm-values-schema-json' plugin. ([#5075](https://github.com/kubernetes-sigs/external-dns/pull/5075)) _@ivankatliarchuk_
32+
- Update _ExternalDNS_ OCI image version to [v0.16.1](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.16.1). ([#xxxx](https://github.com/kubernetes-sigs/external-dns/pull/xxxx)) _@stevehipwell_
3033

3134
## [v1.15.2] - 2025-02-14
3235

@@ -238,6 +241,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
238241
RELEASE LINKS
239242
-->
240243
[UNRELEASED]: https://github.com/kubernetes-sigs/external-dns/tree/master/charts/external-dns
244+
[v1.16.0]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.16.0
241245
[v1.15.2]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.15.2
242246
[v1.15.1]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.15.1
243247
[v1.15.0]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.15.0

charts/external-dns/Chart.yaml

+11-7
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: external-dns
33
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
44
type: application
5-
version: 1.15.2
6-
appVersion: 0.15.1
5+
version: 1.16.0
6+
appVersion: 0.16.1
77
keywords:
88
- kubernetes
99
- externaldns
@@ -21,8 +21,12 @@ maintainers:
2121
annotations:
2222
artifacthub.io/changes: |
2323
- kind: added
24-
description: "Added `transportservers` resource to ClusterRole when specifying `f5-transportserver` or `f5-virtualserver` as a source."
25-
- kind: fixed
26-
description: "Fixed handling of non-string types in `serviceAccount.metadata.annotations` field."
27-
- kind: fixed
28-
description: "Fixed regression where `affinity.nodeAffinity` was being ignored."
24+
description: "Add helm testing framework `helm plugin unittest`."
25+
- kind: added
26+
description: "Add ability to generate schema with `helm plugin schema`."
27+
- kind: added
28+
description: "Add `docs/contributing/dev-guide.md#helm-values` guide."
29+
- kind: changed
30+
description: "Regenerate JSON schema with `helm-values-schema-json' plugin."
31+
- kind: changed
32+
description: "Update _ExternalDNS_ OCI image version to [v0.16.1](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.16.1)."

charts/external-dns/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# external-dns
22

3-
![Version: 1.15.2](https://img.shields.io/badge/Version-1.15.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.15.1](https://img.shields.io/badge/AppVersion-0.15.1-informational?style=flat-square)
3+
![Version: 1.16.0](https://img.shields.io/badge/Version-1.16.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.16.1](https://img.shields.io/badge/AppVersion-0.16.1-informational?style=flat-square)
44

55
ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
66

@@ -27,7 +27,7 @@ helm repo add external-dns https://kubernetes-sigs.github.io/external-dns/
2727
After you've installed the repo you can install the chart.
2828

2929
```shell
30-
helm upgrade --install external-dns external-dns/external-dns --version 1.15.2
30+
helm upgrade --install external-dns external-dns/external-dns --version 1.16.0
3131
```
3232

3333
## Providers

docs/flags.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
| `--[no-]traefik-disable-legacy` | Disable listeners on Resources under the traefik.containo.us API Group |
5050
| `--[no-]traefik-disable-new` | Disable listeners on Resources under the traefik.io API Group |
5151
| `--nat64-networks=NAT64-NETWORKS` | Adding an A record for each AAAA record in NAT64-enabled networks; specify multiple times for multiple possible nets (optional) |
52-
| `--provider=provider` | The DNS provider where the DNS records will be created (required, options: akamai, alibabacloud, aws, aws-sd, azure, azure-dns, azure-private-dns, civo, cloudflare, coredns, designate, digitalocean, dnsimple, exoscale, gandi, godaddy, google, ibmcloud, inmemory, linode, ns1, oci, ovh, pdns, pihole, plural, rfc2136, scaleway, skydns, tencentcloud, transip, ultradns, webhook) |
52+
| `--provider=provider` | The DNS provider where the DNS records will be created (required, options: akamai, alibabacloud, aws, aws-sd, azure, azure-dns, azure-private-dns, civo, cloudflare, coredns, digitalocean, dnsimple, exoscale, gandi, godaddy, google, ibmcloud, inmemory, linode, ns1, oci, ovh, pdns, pihole, plural, rfc2136, scaleway, skydns, tencentcloud, transip, ultradns, webhook) |
5353
| `--provider-cache-time=0s` | The time to cache the DNS provider record list requests. |
5454
| `--domain-filter=` | Limit possible target zones by a domain suffix; specify multiple times for multiple domains (optional) |
5555
| `--exclude-domains=` | Exclude subdomains (optional) |
@@ -107,6 +107,7 @@
107107
| `--inmemory-zone=` | Provide a list of pre-configured zones for the inmemory provider; specify multiple times for multiple zones (optional) |
108108
| `--ovh-endpoint="ovh-eu"` | When using the OVH provider, specify the endpoint (default: ovh-eu) |
109109
| `--ovh-api-rate-limit=20` | When using the OVH provider, specify the API request rate limit, X operations by seconds (default: 20) |
110+
| `--[no-]ovh-enable-cname-relative` | When using the OVH provider, specify if CNAME should be treated as relative on target without final dot (default: false) |
110111
| `--pdns-server="http://localhost:8081"` | When using the PowerDNS/PDNS provider, specify the URL to the pdns server (required when --provider=pdns) |
111112
| `--pdns-server-id="localhost"` | When using the PowerDNS/PDNS provider, specify the id of the server to retrieve. Should be `localhost` except when the server is behind a proxy (optional when --provider=pdns) (default: localhost) |
112113
| `--pdns-api-key=""` | When using the PowerDNS/PDNS provider, specify the API key to use to authorize requests (required when --provider=pdns) |

docs/tutorials/aws.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Hosted Zone IDs.
3030
"Action": [
3131
"route53:ListHostedZones",
3232
"route53:ListResourceRecordSets",
33-
"route53:ListTagsForResource"
33+
"route53:ListTagsForResources"
3434
],
3535
"Resource": [
3636
"*"

0 commit comments

Comments
 (0)