From 4d5ca596066d2b3a2661926cc56fb70988088885 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Thu, 13 Oct 2022 03:32:31 +0200 Subject: [PATCH] fix(monitoring): Increase resource requests and limits This patch increases the resource requests and limits for the Prometheus Operator Pods, after flying too close the sun, which resulted in an unexpected crashing of the Pod due to, too many ServiceMonitor objects. --- infrastructure/monitoring/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/monitoring/release.yaml b/infrastructure/monitoring/release.yaml index 36f085ae0..4e4af9fdb 100644 --- a/infrastructure/monitoring/release.yaml +++ b/infrastructure/monitoring/release.yaml @@ -161,11 +161,11 @@ data: namespace: kube-system resources: limits: - cpu: 200m - memory: 200Mi + cpu: 500m + memory: 512Mi requests: cpu: 100m - memory: 100Mi + memory: 256Mi securityContext: fsGroup: 65534 runAsGroup: 65534 -- GitLab