This is an automated email from the ASF dual-hosted git repository. tsato pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k-examples.git
commit 3a473bface6c4c2fcac6d8675ba9d67f1ff21990 Author: Kuthumi Pepple <[email protected]> AuthorDate: Thu Jun 30 15:06:20 2022 +0100 change mountPath to avoid permission issues --- generic-examples/databases/postgres-deploy/postgres-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic-examples/databases/postgres-deploy/postgres-deployment.yaml b/generic-examples/databases/postgres-deploy/postgres-deployment.yaml index 25f6c85..5814b88 100644 --- a/generic-examples/databases/postgres-deploy/postgres-deployment.yaml +++ b/generic-examples/databases/postgres-deploy/postgres-deployment.yaml @@ -39,7 +39,7 @@ spec: - configMapRef: name: postgres-config volumeMounts: - - mountPath: /var/lib/postgresql/data + - mountPath: /var/lib/postgresql/db-files name: postgredb volumes: - name: postgredb
