From 2f79e62730f1fec4b431781e7db7e2c9d7d463b5 Mon Sep 17 00:00:00 2001 From: Johannes Wicovsky <> Date: Mon, 28 Nov 2022 12:14:00 +0100 Subject: [PATCH] change limit-attribute to Gi from G --- config/default/templates/smardigo-ocr/deployment.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/default/templates/smardigo-ocr/deployment.yml b/config/default/templates/smardigo-ocr/deployment.yml index 6978a54..a39dc18 100644 --- a/config/default/templates/smardigo-ocr/deployment.yml +++ b/config/default/templates/smardigo-ocr/deployment.yml @@ -18,10 +18,10 @@ spec: {{ if .Values.smardigo.ocr.with_limits }} resources: requests: - memory: "1G" + memory: "1Gi" cpu: "1" limits: - memory: "1G" + memory: "1Gi" cpu: "1" {{ end }} imagePullPolicy: Always @@ -37,10 +37,10 @@ spec: {{ if .Values.smardigo.ocr.with_limits }} resources: requests: - memory: "1G" + memory: "1Gi" cpu: "1" limits: - memory: "2G" + memory: "2Gi" cpu: "2" {{ end }} imagePullPolicy: Always