From 06df9fb67d6b3b6e124df6622ba8eb6f8aead47a Mon Sep 17 00:00:00 2001
From: Max Inden <IndenML@gmail.com>
Date: Fri, 20 Jul 2018 15:09:17 +0200
Subject: [PATCH] bundle.yaml: Bump Prometheus Operator memory request and
 limit (#1622)

When handling big Kubernetes objects, marshalling objects is memory
intense. This can be reproduced with the end-to-end test
`TestPrometheusRulesExceedingConfigMapLimit`. This patch doubles the
memory request and limit of the Prometheus Operator deployment to 100mb
and 200mb.
---
 manifests/0prometheus-operator-deployment.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/manifests/0prometheus-operator-deployment.yaml b/manifests/0prometheus-operator-deployment.yaml
index b5be341e..06b295f2 100644
--- a/manifests/0prometheus-operator-deployment.yaml
+++ b/manifests/0prometheus-operator-deployment.yaml
@@ -29,10 +29,10 @@ spec:
         resources:
           limits:
             cpu: 200m
-            memory: 100Mi
+            memory: 200Mi
           requests:
             cpu: 100m
-            memory: 50Mi
+            memory: 100Mi
         securityContext:
           allowPrivilegeEscalation: false
           readOnlyRootFilesystem: true
-- 
GitLab