From a86fa4173e4e206a5942fe126db6c598cf1d721a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= Date: Mon, 22 Jan 2024 12:27:11 +0100 Subject: [PATCH] [helm] Allow tpl in provider again (#4180) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [helm] Allow tpl in provider again Signed-off-by: Jan-Otto Kröpke * bump version and changelog Signed-off-by: Jan-Otto Kröpke * re-run helm-docs Signed-off-by: Jan-Otto Kröpke --------- Signed-off-by: Jan-Otto Kröpke Signed-off-by: Jan-Otto Kröpke --- charts/external-dns/CHANGELOG.md | 6 ++++++ charts/external-dns/Chart.yaml | 4 ++-- charts/external-dns/README.md | 4 ++-- charts/external-dns/templates/deployment.yaml | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/charts/external-dns/CHANGELOG.md b/charts/external-dns/CHANGELOG.md index d7f307198e..008e14df6b 100644 --- a/charts/external-dns/CHANGELOG.md +++ b/charts/external-dns/CHANGELOG.md @@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [UNRELEASED] +## [v1.14.2] - 2024-01-22 + +### Fixed + +- Restore template support in `.Values.provider` and `.Values.provider.name` + ## [v1.14.1] - 2024-01-11 ### Fixed diff --git a/charts/external-dns/Chart.yaml b/charts/external-dns/Chart.yaml index 9d6cf76e2d..9147740e90 100644 --- a/charts/external-dns/Chart.yaml +++ b/charts/external-dns/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: external-dns description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers. type: application -version: 1.14.1 +version: 1.14.2 appVersion: 0.14.0 keywords: - kubernetes @@ -21,4 +21,4 @@ maintainers: annotations: artifacthub.io/changes: | - kind: fixed - 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)" + 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)" diff --git a/charts/external-dns/README.md b/charts/external-dns/README.md index be0e83f060..fd26e96d89 100644 --- a/charts/external-dns/README.md +++ b/charts/external-dns/README.md @@ -1,6 +1,6 @@ # external-dns -![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) +![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) ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers. @@ -27,7 +27,7 @@ helm repo add external-dns https://kubernetes-sigs.github.io/external-dns/ After you've installed the repo you can install the chart. ```shell -helm upgrade --install external-dns external-dns/external-dns --version 1.14.1 +helm upgrade --install external-dns external-dns/external-dns --version 1.14.2 ``` ## Providers diff --git a/charts/external-dns/templates/deployment.yaml b/charts/external-dns/templates/deployment.yaml index a29c2f4ba0..b44c7e21b1 100644 --- a/charts/external-dns/templates/deployment.yaml +++ b/charts/external-dns/templates/deployment.yaml @@ -1,4 +1,4 @@ -{{- $providerName := include "external-dns.providerName" . }} +{{- $providerName := tpl (include "external-dns.providerName" .) $ }} apiVersion: apps/v1 kind: Deployment metadata: