From d743ddd1ec5a9d131dfa5676caf8900a4638d0c6 Mon Sep 17 00:00:00 2001
From: Lluis Gifre <lluis.gifre@cttc.es>
Date: Tue, 4 Oct 2022 08:55:26 +0000
Subject: [PATCH] Monitoring component:

- corrected deployment name in manifest file
- added resource requests and limits for monitoring server container
---
 manifests/monitoringservice.yaml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/manifests/monitoringservice.yaml b/manifests/monitoringservice.yaml
index 3924ba2d1..39acfd523 100644
--- a/manifests/monitoringservice.yaml
+++ b/manifests/monitoringservice.yaml
@@ -51,7 +51,7 @@ spec:
 apiVersion: apps/v1
 kind: Deployment
 metadata:
-  name: monitoringserver
+  name: monitoringservice
 spec:
   selector:
     matchLabels:
@@ -89,6 +89,13 @@ spec:
         livenessProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:7070"]
+        resources:
+          requests:
+            cpu: 250m
+            memory: 512Mi
+          limits:
+            cpu: 700m
+            memory: 1024Mi
 ---
 apiVersion: v1
 kind: Service
-- 
GitLab