From e5d6b1047064de597eb90c298754e4cd2670d4c7 Mon Sep 17 00:00:00 2001 From: RWShelton Date: Tue, 19 Nov 2024 10:18:13 -0800 Subject: [PATCH] Updates to yaml for persistence and resource requests The resources request/limit block is set to the default, but I'm leaving it here for the purpose of initial imports. More details in documentation. --- helm/values.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/helm/values.yaml b/helm/values.yaml index 3beb061..af05196 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -109,11 +109,24 @@ affinity: {} postgresql: enabled: true primary: + resources: + requests: + memory: 128Mi + limits: + memory: 192Mi #borrowed this from metacat to get started, might need some further updating when we get to API time. pgHbaConfiguration: | host vegbank vegbank 0.0.0.0/0 password host vegbank vegbank ::0/0 password local all all trust + host all all 127.0.0.1/32 trust + persistence: + enabled: true + storageClass: csi-cephfs-sc + size: 100Gi + accessModes: + - ReadWriteMany +