Jacob Winther 0a99414d6a Move appkey to secret
Move appkey to proper secret. Also support an existingSecret to allow managing the appkey outside on values.yaml.
2025-04-26 14:04:41 +12:00

10 lines
202 B
YAML

{{- if not .Values.librenms.existingSecret }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ .Release.Name }}
type: Opaque
data:
appkey: {{ .Values.librenms.appkey | b64enc | quote }}
{{- end }}