Skip to main content

infra/helm/platform/templates/secrets.yaml

Metadata

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

{{- if .Values.secrets.create }}
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.secrets.name }}
namespace: {{ .Values.namespace.name }}
type: Opaque
immutable: true
stringData:
{{- range $key, $value := .Values.secrets.data }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}