mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[dnsmadeeasy-webhook] fix service and args (#1012)
Co-authored-by: angelnu <git@angelnucom>
This commit is contained in:
parent
e517349340
commit
964944a6cf
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user