Skip to content
Snippets Groups Projects
Verified Commit 93e53e52 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: wrong path in postgres chart

parent fab0a8de
No related branches found
No related tags found
No related merge requests found
Pipeline #2978 passed
...@@ -29,10 +29,11 @@ spec: ...@@ -29,10 +29,11 @@ spec:
{{ if .Values.tls.enabled -}} {{ if .Values.tls.enabled -}}
- name: certs - name: certs
secret: secret:
defaultMode: 0600
secretName: {{ .Values.tls.certificatesSecret }} secretName: {{ .Values.tls.certificatesSecret }}
{{- end }} {{- end }}
- configMap: - configMap:
defaultMode: 420 defaultMode: 0600
name: {{ include "postgresql-helm.fullname" . }} name: {{ include "postgresql-helm.fullname" . }}
name: config name: config
- name: data - name: data
...@@ -79,7 +80,7 @@ spec: ...@@ -79,7 +80,7 @@ spec:
volumeMounts: volumeMounts:
- mountPath: "/var/lib/postgresql/data" - mountPath: "/var/lib/postgresql/data"
name: data name: data
subPath: "{{ .Chart.AppVersion }}" subPath: "{{ .Chart.AppVersion }}/data"
- mountPath: "/configs" - mountPath: "/configs"
name: config name: config
- mountPath: "/dev/shm" - mountPath: "/dev/shm"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment