diff --git a/charts/stable/dnsmadeeasy-webhook/Chart.yaml b/charts/stable/dnsmadeeasy-webhook/Chart.yaml index a96a2cc7..b1457cce 100644 --- a/charts/stable/dnsmadeeasy-webhook/Chart.yaml +++ b/charts/stable/dnsmadeeasy-webhook/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.2.0 description: Cert-Manager Webhook for DNSMadeEasy name: dnsmadeeasy-webhook -version: 3.3.0 +version: 3.3.1 keywords: - cert-manager - dnsmadeeasy diff --git a/charts/stable/dnsmadeeasy-webhook/README.md b/charts/stable/dnsmadeeasy-webhook/README.md index 50deed9b..29d34220 100644 --- a/charts/stable/dnsmadeeasy-webhook/README.md +++ b/charts/stable/dnsmadeeasy-webhook/README.md @@ -1,6 +1,6 @@ # dnsmadeeasy-webhook -![Version: 3.3.0](https://img.shields.io/badge/Version-3.3.0-informational?style=flat-square) ![AppVersion: 1.2.0](https://img.shields.io/badge/AppVersion-1.2.0-informational?style=flat-square) +![Version: 3.3.1](https://img.shields.io/badge/Version-3.3.1-informational?style=flat-square) ![AppVersion: 1.2.0](https://img.shields.io/badge/AppVersion-1.2.0-informational?style=flat-square) Cert-Manager Webhook for DNSMadeEasy @@ -91,6 +91,20 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [3.3.1] + +#### Added + +- N/A + +#### Changed + +- Fix: remove new-line in webhook cert name + +#### Removed + +- N/A + ### [3.3.0] #### Added diff --git a/charts/stable/dnsmadeeasy-webhook/README_CHANGELOG.md.gotmpl b/charts/stable/dnsmadeeasy-webhook/README_CHANGELOG.md.gotmpl index ccfdb4b4..cd1f5f37 100644 --- a/charts/stable/dnsmadeeasy-webhook/README_CHANGELOG.md.gotmpl +++ b/charts/stable/dnsmadeeasy-webhook/README_CHANGELOG.md.gotmpl @@ -9,6 +9,20 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [3.3.1] + +#### Added + +- N/A + +#### Changed + +- Fix: remove new-line in webhook cert name + +#### Removed + +- N/A + ### [3.3.0] #### Added diff --git a/charts/stable/dnsmadeeasy-webhook/templates/common.tpl b/charts/stable/dnsmadeeasy-webhook/templates/common.tpl index dcdef860..c7ba09f1 100644 --- a/charts/stable/dnsmadeeasy-webhook/templates/common.tpl +++ b/charts/stable/dnsmadeeasy-webhook/templates/common.tpl @@ -15,9 +15,9 @@ {{- define "dnsmadeeasy-webhook.servingCertificate" -}} {{- if .Values.generateCerts }} -{{ printf "%s-webhook-tls" (include "common.names.fullname" .) }} +{{- printf "%s-webhook-tls" (include "common.names.fullname" .) }} {{- else -}} -{{ printf "%s-cert-manager-webhook-ca" (include "common.names.fullname" .) }} +{{- printf "%s-cert-manager-webhook-ca" (include "common.names.fullname" .) }} {{- end -}} {{- end -}}