18 lines
326 B
Smarty
18 lines
326 B
Smarty
{{/*
|
|
The Secret object to be created.
|
|
*/}}
|
|
{{- define "common.secret" }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}
|
|
labels:
|
|
{{- include "common.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
{{- with .Values.secret }}
|
|
stringData:
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|