mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-26 13:42:40 +00:00
13 lines
310 B
YAML
13 lines
310 B
YAML
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: {{ include "opengist.fullname" . }}-secret
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
{{ include "opengist.labels" . | indent 4 }}
|
||
|
type: Opaque
|
||
|
data:
|
||
|
{{- range $key, $value := .Values.configSecret }}
|
||
|
{{ $key }}: {{ $value | b64enc | quote }}
|
||
|
{{- end }}
|