From e86d7fcc05c44e85315b3b5e6ab04de82f8307ba Mon Sep 17 00:00:00 2001 From: Conor Brady Date: Tue, 30 Jan 2024 16:49:16 -0800 Subject: [PATCH] Fix crunchy resource config (#3365) --- openshift/templates/crunchy.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/openshift/templates/crunchy.yaml b/openshift/templates/crunchy.yaml index 27ea5c76b..bd3783f59 100644 --- a/openshift/templates/crunchy.yaml +++ b/openshift/templates/crunchy.yaml @@ -89,12 +89,13 @@ objects: instances: - name: crunchy replicas: 1 - requests: - cpu: ${CPU_REQUEST} - memory: ${MEMORY_REQUEST} - limits: - cpu: ${CPU_LIMIT} - memory: ${MEMORY_LIMIT} + resources: + requests: + cpu: ${CPU_REQUEST} + memory: ${MEMORY_REQUEST} + limits: + cpu: ${CPU_LIMIT} + memory: ${MEMORY_LIMIT} dataVolumeClaimSpec: accessModes: - "ReadWriteOnce"