Commit d743ddd1 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Monitoring component:

- corrected deployment name in manifest file
- added resource requests and limits for monitoring server container
parent ffbf7393
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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