PromucFlow_constructor/deploy/helm/templates/secret.yaml

17 lines
378 B
YAML
Raw Normal View History

{{- if .Values.secrets }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "appsmith.fullname" . }}
namespace: {{ include "appsmith.namespace" . }}
labels:
{{- include "appsmith.labels" . | nindent 4 }}
type: Opaque
data:
{{- range $key, $value := .Values.secrets }}
{{- if $value }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{- end }}