mirror of
https://github.com/thomiceli/opengist.git
synced 2025-05-30 07:30:40 +02:00
13 lines
319 B
YAML
13 lines
319 B
YAML
{{- if (not .Values.configExistingSecret) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "opengist.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{ include "opengist.labels" . | indent 4 }}
|
|
type: Opaque
|
|
stringData:
|
|
config.yml: |-
|
|
{{- .Values.config | toYaml | nindent 4 }}
|
|
{{- end }} |