mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-25 21:32:40 +00:00
12 lines
310 B
YAML
12 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 }}
|