mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 08:06:57 -06:00
22 lines
674 B
YAML
Executable File
22 lines
674 B
YAML
Executable File
{{- if and (or (.Files.Glob "files/conf.d/*.conf") .Values.postgresqlExtendedConf) (not .Values.extendedConfConfigMap)}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "postgresql.fullname" . }}-extended-configuration
|
|
labels:
|
|
app: {{ template "postgresql.name" . }}
|
|
chart: {{ template "postgresql.chart" . }}
|
|
release: {{ .Release.Name | quote }}
|
|
heritage: {{ .Release.Service | quote }}
|
|
data:
|
|
{{- with .Files.Glob "files/conf.d/*.conf" }}
|
|
{{ .AsConfig | indent 2 }}
|
|
{{- end }}
|
|
{{ with .Values.postgresqlExtendedConf }}
|
|
override.conf: |
|
|
{{- range $key, $value := . }}
|
|
{{ $key | snakecase }}={{ $value }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|