21 lines
579 B
Smarty
21 lines
579 B
Smarty
{{/* Define the secret */}}
|
|
{{- define "checkmk.secret" -}}
|
|
|
|
{{- $secretName := printf "%s-secret" (include "tc.common.names.fullname" .) }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
type: Opaque
|
|
metadata:
|
|
name: {{ $secretName }}
|
|
labels:
|
|
{{- include "tc.common.labels" . | nindent 4 }}
|
|
stringData:
|
|
CMK_PASSWORD: {{ .Values.cmk.password | quote }}
|
|
CMK_SITE_ID: {{ .Values.cmk.site_id | quote }}
|
|
CMK_LIVESTATUS_TCP: {{ ternary "on" "off" .Values.cmk.livestatus_tcp | quote }}
|
|
{{- with .Values.cmk.mail_relay_host }}
|
|
MAIL_RELAY_HOST: {{ . | quote }}
|
|
{{- end }}
|
|
{{- end }}
|