From 078cff87c03a04532787fa2ce0c4ecc554e3704a Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Wed, 18 Aug 2021 19:11:22 +0200 Subject: [PATCH] fix(postgres): Fix helmchart syntax for configmap --- infrastructure/postgres/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/postgres/release.yaml b/infrastructure/postgres/release.yaml index e62ff6c15..bd8cd40fe 100644 --- a/infrastructure/postgres/release.yaml +++ b/infrastructure/postgres/release.yaml @@ -22,7 +22,7 @@ spec: # Required due to OpenShift magic securityContext: runAsUser: null - readOnlyRootFilesystem: true - allowPrivilegeEscalation: false + readOnlyRootFilesystem: "true" + allowPrivilegeEscalation: "false" configKubernetes: - enable_pod_antiaffinity: true + enable_pod_antiaffinity: "true" -- GitLab