You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
354 B
YAML

{{- if .Values.envSecret.create -}}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "openclaw-mission-control.envSecretName" . }}
labels:
{{- include "openclaw-mission-control.labels" . | nindent 4 }}
type: Opaque
stringData:
{{- range $key, $value := .Values.envSecret.data }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}