[dnsmadeeasy-webhook] fix service and args (#1012)

Co-authored-by: angelnu <git@angelnucom>
This commit is contained in:
Angel Nunez Mencias 2021-06-15 08:50:08 +02:00 committed by GitHub
parent e517349340
commit 964944a6cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 39 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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 }}