* port most recent changes from KAH * add general shizzle * add rests of go tests * whoops * hmm * make pre-release wait more * try another synthaxis * okey... * test-> tests * Make unittests a bit more usefull
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 }}
|