Updated chart files

This commit is contained in:
Chris Stuurman 2024-03-23 15:34:31 +02:00
parent 48b06e7c44
commit 61d566cbe0
3 changed files with 18 additions and 5 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@
/.vs /.vs
apiserver.local.config apiserver.local.config
charts
_test

View File

@ -1,5 +1,5 @@
apiVersion: v1 apiVersion: v1
appVersion: "1.0" appVersion: "v0.0.1"
description: A Helm chart for Kubernetes description: Cert-Manager webhook for sthome
name: sthome-webhook name: sthome-webhook
version: 0.1.0 version: 0.0.1

View File

@ -1,6 +1,6 @@
# The GroupName here is used to identify your company or business unit that # The GroupName here is used to identify your company or business unit that
# created this webhook. # created this webhook.
# For sthome, this may be "acme.sthome.net". # For sthome, this may be "webhook.acme.cert-manager.io".
# This name will need to be referenced in each Issuer's `webhook` stanza to # This name will need to be referenced in each Issuer's `webhook` stanza to
# inform cert-manager of where to send ChallengePayload resources in order to # inform cert-manager of where to send ChallengePayload resources in order to
# solve the DNS01 challenge. # solve the DNS01 challenge.
@ -13,13 +13,23 @@ certManager:
serviceAccountName: cert-manager serviceAccountName: cert-manager
image: image:
repository: sthome/webhook-image repository: sthome/cert-manager-webhook-sthome
tag: latest tag: latest
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""
pki:
caDuration: 43800h # 5y
servingCertificateDuration: 8760h # 1y
secret:
accessKey: ""
secretKey: ""
name: sthome-webhook-secret
service: service:
type: ClusterIP type: ClusterIP
port: 443 port: 443
@ -41,3 +51,4 @@ nodeSelector: {}
tolerations: [] tolerations: []
affinity: {} affinity: {}