Skip to content

Commit 136477f

Browse files
authored
Merge pull request #4735 from stevehipwell/chart-v0.15.0
feat(chart): Updated image to v0.15.0
2 parents a087c87 + a9fc7d2 commit 136477f

File tree

3 files changed

+23
-18
lines changed

3 files changed

+23
-18
lines changed

charts/external-dns/CHANGELOG.md

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

1919
## [UNRELEASED]
2020

21+
## [v1.15.0] - 2023-09-10
22+
23+
### Changed
24+
25+
- Updated _ExternalDNS_ OCI image version to [v0.15.0](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.15.0). ([#xxxx](https://github.com/kubernetes-sigs/external-dns/pull/xxxx)) _@stevehipwell_
26+
2127
### Fixed
2228

23-
- Fixed `provider.webhook.resources` behavior to correctly leverage resource limits ([#4560](https://github.com/kubernetes-sigs/external-dns/pull/4560))
24-
- Fixed `provider.webhook.imagePullPolicy` behavior to correctly leverage pull policy ([#4643](https://github.com/kubernetes-sigs/external-dns/pull/4643)) _@kimsondrup_
25-
- Add correct webhook metric port to `Service` and `ServiceMonitor` ([#4643](https://github.com/kubernetes-sigs/external-dns/pull/4643)) _@kimsondrup_
26-
- No longer require the unauthenticated webhook provider port to be exposed for health probes ([#4691](https://github.com/kubernetes-sigs/external-dns/pull/4691)) _@kimsondrup_ _@hatrx_
29+
- Fixed `provider.webhook.resources` behavior to correctly leverage resource limits. ([#4560](https://github.com/kubernetes-sigs/external-dns/pull/4560)) _@crutonjohn_
30+
- Fixed `provider.webhook.imagePullPolicy` behavior to correctly leverage pull policy. ([#4643](https://github.com/kubernetes-sigs/external-dns/pull/4643)) _@kimsondrup_
31+
- Fixed to add correct webhook metric port to `Service` and `ServiceMonitor`. ([#4643](https://github.com/kubernetes-sigs/external-dns/pull/4643)) _@kimsondrup_
32+
- Fixed to no longer require the unauthenticated webhook provider port to be exposed for health probes. ([#4691](https://github.com/kubernetes-sigs/external-dns/pull/4691)) _@kimsondrup_ & _@hatrx_
2733

2834
## [v1.14.5] - 2023-06-10
2935

@@ -194,6 +200,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
194200
RELEASE LINKS
195201
-->
196202
[UNRELEASED]: https://github.com/kubernetes-sigs/external-dns/tree/master/charts/external-dns
203+
[v1.15.0]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.15.0
197204
[v1.14.5]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.14.5
198205
[v1.14.4]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.14.4
199206
[v1.14.3]: https://github.com/kubernetes-sigs/external-dns/releases/tag/external-dns-helm-chart-1.14.3

charts/external-dns/Chart.yaml

+10-12
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.14.5
6-
appVersion: 0.14.2
5+
version: 1.15.0
6+
appVersion: 0.15.0
77
keywords:
88
- kubernetes
99
- externaldns
@@ -20,15 +20,13 @@ maintainers:
2020
2121
annotations:
2222
artifacthub.io/changes: |
23-
- kind: added
24-
description: "Added support for `extraContainers` argument."
25-
- kind: added
26-
description: "Added support for setting `excludeDomains` argument."
2723
- kind: changed
28-
description: "Updated _ExternalDNS_ OCI image version to [v0.14.2](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.14.2)."
29-
- kind: changed
30-
description: "Updated `DNSEndpoint` CRD."
31-
- kind: changed
32-
description: "Changed the implementation for `revisionHistoryLimit` to be more generic."
24+
description: "Updated _ExternalDNS_ OCI image version to [v0.15.0](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.15.0)."
25+
- kind: fixed
26+
description: "Fixed `provider.webhook.resources` behavior to correctly leverage resource limits."
27+
- kind: fixed
28+
description: "Fixed `provider.webhook.imagePullPolicy` behavior to correctly leverage pull policy."
29+
- kind: fixed
30+
description: "Fixed to add correct webhook metric port to `Service` and `ServiceMonitor`."
3331
- kind: fixed
34-
description: "Fixed the `ServiceMonitor` job name to correctly use the instance label."
32+
description: "Fixed to no longer require the unauthenticated webhook provider port to be exposed for health probes."

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.14.5](https://img.shields.io/badge/Version-1.14.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.14.2](https://img.shields.io/badge/AppVersion-0.14.2-informational?style=flat-square)
3+
![Version: 1.15.0](https://img.shields.io/badge/Version-1.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.15.0](https://img.shields.io/badge/AppVersion-0.15.0-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.14.5
30+
helm upgrade --install external-dns external-dns/external-dns --version 1.15.0
3131
```
3232

3333
## Providers

0 commit comments

Comments
 (0)