diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-04-23 13:19:43 +0200 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-04-23 13:28:54 +0200 |
commit | 46d1a6171e061d9f4bd2a05d721d03de34e6c84e (patch) | |
tree | 7bb72ac47c513c493425609ebb7d0c71079bd544 /kubernetes/contrib/components/netbox/charts | |
parent | 996ab96fabdf0fbba8d8f1430a7a2c6825e6ca4f (diff) |
[Contrib] Make Postgres work when using dynamic PV
postgres was not working with dynamic PV because of lost+found folder.
We changed the mount path to make it work.
Issue-ID: OOM-1227
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: Id15fd089c56e339dbc5939cd28207b535e8ab86b
Diffstat (limited to 'kubernetes/contrib/components/netbox/charts')
-rwxr-xr-x | kubernetes/contrib/components/netbox/charts/netbox-postgres/templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/contrib/components/netbox/charts/netbox-postgres/templates/deployment.yaml b/kubernetes/contrib/components/netbox/charts/netbox-postgres/templates/deployment.yaml index 45468e4969..3a4bb90b98 100755 --- a/kubernetes/contrib/components/netbox/charts/netbox-postgres/templates/deployment.yaml +++ b/kubernetes/contrib/components/netbox/charts/netbox-postgres/templates/deployment.yaml @@ -50,7 +50,7 @@ spec: name: localtime readOnly: true - name: {{ include "common.fullname" . }}-data - mountPath: /var/lib/postgresql/data + mountPath: /var/lib/postgresql/ resources: {{ include "common.resources" . | indent 12 }} {{- if .Values.nodeSelector }} |