From 852cf61034dafe1dbbfff8cab02218930442618f Mon Sep 17 00:00:00 2001 From: Yori Fournier Date: Tue, 27 Oct 2020 16:00:02 +0100 Subject: [PATCH] added runAsUser for pgapp and pgdata --- manifest.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifest.yaml b/manifest.yaml index 832c439..66eacec 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -47,6 +47,8 @@ spec: labels: app: pgapp spec: + securityContext: + runAsUser: 1000 containers: - name: pgapp image: docker-registry.default.svc:5000/daiquiri-test-instance-498/image-pgapp:latest @@ -69,6 +71,8 @@ spec: labels: app: pgdata spec: + securityContext: + runAsUser: 1000 containers: - name: pgdata image: docker-registry.default.svc:5000/daiquiri-test-instance-498/image-pgdata:latest -- GitLab