From 964944a6cfe2dbb78182416652794a86f31487b0 Mon Sep 17 00:00:00 2001 From: Angel Nunez Mencias Date: Tue, 15 Jun 2021 08:50:08 +0200 Subject: [PATCH] [dnsmadeeasy-webhook] fix service and args (#1012) Co-authored-by: angelnu --- charts/stable/dnsmadeeasy-webhook/Chart.yaml | 2 +- charts/stable/dnsmadeeasy-webhook/README.md | 16 +++++++++++++++- .../README_CHANGELOG.md.gotmpl | 14 ++++++++++++++ .../dnsmadeeasy-webhook/templates/common.tpl | 14 +++++++++----- 4 files changed, 39 insertions(+), 7 deletions(-) diff --git a/charts/stable/dnsmadeeasy-webhook/Chart.yaml b/charts/stable/dnsmadeeasy-webhook/Chart.yaml index ba4c2ca1..c0a36de9 100644 --- a/charts/stable/dnsmadeeasy-webhook/Chart.yaml +++ b/charts/stable/dnsmadeeasy-webhook/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.1.0 description: Cert-Manager Webhook for DNSMadeEasy name: dnsmadeeasy-webhook -version: 3.0.0 +version: 3.0.1 keywords: - cert-manager - dnsmadeeasy diff --git a/charts/stable/dnsmadeeasy-webhook/README.md b/charts/stable/dnsmadeeasy-webhook/README.md index ddc3ea3e..c5cfcc2a 100644 --- a/charts/stable/dnsmadeeasy-webhook/README.md +++ b/charts/stable/dnsmadeeasy-webhook/README.md @@ -1,6 +1,6 @@ # dnsmadeeasy-webhook -![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) +![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) Cert-Manager Webhook for DNSMadeEasy @@ -88,6 +88,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.0.1] + +#### Added + +- N/A + +#### Changed + +- fix service and arguments syntax + +#### Removed + +- N/A + ### [3.0.0] #### Added diff --git a/charts/stable/dnsmadeeasy-webhook/README_CHANGELOG.md.gotmpl b/charts/stable/dnsmadeeasy-webhook/README_CHANGELOG.md.gotmpl index 53ad80d1..c9541f82 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.0.1] + +#### Added + +- N/A + +#### Changed + +- fix service and arguments syntax + +#### Removed + +- N/A + ### [3.0.0] #### Added diff --git a/charts/stable/dnsmadeeasy-webhook/templates/common.tpl b/charts/stable/dnsmadeeasy-webhook/templates/common.tpl index 304d7bec..7397749a 100644 --- a/charts/stable/dnsmadeeasy-webhook/templates/common.tpl +++ b/charts/stable/dnsmadeeasy-webhook/templates/common.tpl @@ -58,14 +58,18 @@ probes: scheme: HTTPS path: /healthz port: https + service: main: - port: - name: https - targetPort: 4443 - port: 443 + ports: + http: + targetPort: 4443 + port: 443 -args: '["--tls-cert-file=/tls/tls.crt","--tls-private-key-file=/tls/tls.key","--secure-port=4443"]' +args: +- --tls-cert-file=/tls/tls.crt +- --tls-private-key-file=/tls/tls.key +- --secure-port=4443 env: GROUP_NAME: {{ .Values.groupName }}