diff --git a/.gitlab/preview/values.yaml b/.gitlab/preview/values.yaml
index dd62d7cf85f7656b75b934ee11b8e01f556b3206..6cf0f874a4280c8ed8034316931e4c82c6215dd1 100644
--- a/.gitlab/preview/values.yaml
+++ b/.gitlab/preview/values.yaml
@@ -27,6 +27,14 @@ core-ui-middleware:
       cpu: 100m
       memory: 384Mi
 
+  updater:
+    resources:
+      limits:
+        memory: 384Mi
+      requests:
+        cpu: 100m
+        memory: 384Mi
+
 appsuite:
   core-ui-middleware:
     enabled: false
diff --git a/helm/core-ui-middleware/Chart.yaml b/helm/core-ui-middleware/Chart.yaml
index d0c750490ace4c70eee2fdae5a0f4ec0d51746ac..c97bd48a9a4cb4571f7ac642a63647871bd96731 100644
--- a/helm/core-ui-middleware/Chart.yaml
+++ b/helm/core-ui-middleware/Chart.yaml
@@ -15,7 +15,7 @@ type: application
 # This is the chart version. This version number should be incremented each time you make changes
 # to the chart and its templates, including the app version.
 # Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 3.0.0
+version: 3.0.1
 
 # This is the version number of the application being deployed. This version number should be
 # incremented each time you make changes to the application. Versions are not expected to
diff --git a/helm/core-ui-middleware/templates/deployment.yaml b/helm/core-ui-middleware/templates/deployment.yaml
index f27939040fc515db94222202cf740f49659a8bf4..16341767de388326bd9439dc64eca3cd3fcddfec 100644
--- a/helm/core-ui-middleware/templates/deployment.yaml
+++ b/helm/core-ui-middleware/templates/deployment.yaml
@@ -135,7 +135,7 @@ spec:
             - name: REDIS_PREFIX
               value: "{{ .Values.redis.prefix }}"
           resources:
-            {{- toYaml .Values.resources | nindent 12 }}
+            {{- toYaml .Values.updater.resources | nindent 12 }}
           volumeMounts:
             - name: manifest-config
               mountPath: /app/config/
diff --git a/helm/core-ui-middleware/templates/updater.yaml b/helm/core-ui-middleware/templates/updater.yaml
index 3d42e62a9d5e7ee2140394da5589e43126eb9614..c53ba9208a5ad54a076ad425ee70532a176630e3 100644
--- a/helm/core-ui-middleware/templates/updater.yaml
+++ b/helm/core-ui-middleware/templates/updater.yaml
@@ -78,7 +78,7 @@ spec:
             {{- omit .Values.probe.readiness "enabled" | toYaml | nindent 12 }}
           {{- end }}
           resources:
-            {{- toYaml .Values.resources | nindent 12 }}
+            {{- toYaml .Values.updater.resources | nindent 12 }}
           volumeMounts:
             - name: manifest-config
               mountPath: /app/config/
diff --git a/helm/core-ui-middleware/values.yaml b/helm/core-ui-middleware/values.yaml
index 620cdb1d4a3a513fde02cc9ed0b474eff1323267..8f4966e9fd7e164216880838a6428ec428d41834 100644
--- a/helm/core-ui-middleware/values.yaml
+++ b/helm/core-ui-middleware/values.yaml
@@ -78,6 +78,15 @@ resources:
     cpu: 500m
     memory: 196Mi
 
+updater:
+  resources:
+    # We recommend to not define a cpu limit for this pod. This pod runs compression of many files in a short time frame.
+    limits:
+      memory: 768Mi
+    requests:
+      cpu: 100m
+      memory: 196Mi
+
 autoscaling:
   enabled: false
   minReplicas: 1