fix(opendesk-certificates): Template caCertificate options

This commit is contained in:
Thorsten Roßner
2025-09-29 11:30:53 +02:00
parent 13968a8133
commit 43dd2bee9e
2 changed files with 7 additions and 0 deletions

View File

@@ -66,6 +66,9 @@ cleanup:
selfSigned:
enabled: {{ .Values.certificate.selfSigned }}
caCertificate:
create: {{ .Values.certificate.caCertificate.create }}
secretName: {{ .Values.certificate.caCertificate.secretName | quote }}
keystores:
jks:
enabled: true

View File

@@ -9,5 +9,9 @@ certificate:
# When using `wildcard: true` please ensure you configure the cert-manager accordingly, e.g. using DNS
# validation (`DNS-01`) in case of letsencrypt.
wildcard: false
# See also `opendesk/docs/enhanced-configuration/self-signed-certificates.md`
selfSigned: false
caCertificate:
create: true
secretName: ""
...