infra/helm/platform/templates/secrets.yaml
Metadata
- Purpose: Kubernetes Helm chart template or values configuration.
- Domain:
infrastructure - Language:
yaml - Bytes: 296
- Lines: 14
- Content hash (short):
eafb3fcf - Source (start): infra/helm/platform/templates/secrets.yaml:1
- Source (end): infra/helm/platform/templates/secrets.yaml:14
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 }}