feat(helmfile): Add template support for external secrets for opendesk-services

Signed-off-by: Axel Lender <lender@b1-systems.de>
This commit is contained in:
Axel Lender
2025-06-06 11:54:42 +02:00
parent 2f1edf63c1
commit 0db490db94
2 changed files with 14 additions and 0 deletions

View File

@@ -68,6 +68,9 @@ selfSigned:
enabled: true enabled: true
password: password:
value: {{ .Values.secrets.certificates.password | quote }} value: {{ .Values.secrets.certificates.password | quote }}
secret:
name: {{ .Values.externalSecrets.certificates.password.name | quote }}
key: {{ .Values.externalSecrets.certificates.password.key | quote }}
wildcard: {{ .Values.certificate.wildcard }} wildcard: {{ .Values.certificate.wildcard }}
... ...

View File

@@ -0,0 +1,11 @@
{{/*
SPDX-FileCopyrightText: 2025 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
SPDX-License-Identifier: Apache-2.0
*/}}
---
externalSecrets:
certificates:
password :
name: ~
key: ~
...