Skip to content

Commit a86fa41

Browse files
authored
[helm] Allow tpl in provider again (#4180)
* [helm] Allow tpl in provider again Signed-off-by: Jan-Otto Kröpke <[email protected]> * bump version and changelog Signed-off-by: Jan-Otto Kröpke <[email protected]> * re-run helm-docs Signed-off-by: Jan-Otto Kröpke <[email protected]> --------- Signed-off-by: Jan-Otto Kröpke <[email protected]> Signed-off-by: Jan-Otto Kröpke <[email protected]>
1 parent 4db7b22 commit a86fa41

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

charts/external-dns/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
## [UNRELEASED]
2020

21+
## [v1.14.2] - 2024-01-22
22+
23+
### Fixed
24+
25+
- Restore template support in `.Values.provider` and `.Values.provider.name`
26+
2127
## [v1.14.1] - 2024-01-11
2228

2329
### Fixed

charts/external-dns/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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.1
5+
version: 1.14.2
66
appVersion: 0.14.0
77
keywords:
88
- kubernetes
@@ -21,4 +21,4 @@ maintainers:
2121
annotations:
2222
artifacthub.io/changes: |
2323
- kind: fixed
24-
description: "Fixed webhook install failure: `http-webhook-metrics: must be no more than 15 characters`. ([#4173](https://github.com/kubernetes-sigs/external-dns/pull/4173)) [@gabe565](https://github.com/gabe565)"
24+
description: "Restore template support in `.Values.provider` and `.Values.provider.name`. ([#4180](https://github.com/kubernetes-sigs/external-dns/pull/4180)) [@jkroepke](https://github.com/jkroepke)"

charts/external-dns/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# external-dns
22

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

3333
## Providers

charts/external-dns/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- $providerName := include "external-dns.providerName" . }}
1+
{{- $providerName := tpl (include "external-dns.providerName" .) $ }}
22
apiVersion: apps/v1
33
kind: Deployment
44
metadata:

0 commit comments

Comments
 (0)