Commit 6850ad48 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Manifests:

- Updated requests and limits per pod
- Updated HPA replica limits
parent 7848b9db
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -52,11 +52,11 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:1010"]
        resources:
          requests:
            cpu: 50m
            cpu: 75m
            memory: 64Mi
          limits:
            cpu: 500m
            memory: 512Mi
            cpu: 100m
            memory: 128Mi
---
apiVersion: v1
kind: Service
@@ -87,8 +87,8 @@ spec:
    apiVersion: apps/v1
    kind: Deployment
    name: contextservice
  minReplicas: 2
  maxReplicas: 5
  minReplicas: 1
  maxReplicas: 20
  metrics:
  - type: Resource
    resource:
+3 −3
Original line number Diff line number Diff line
@@ -45,11 +45,11 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:2020"]
        resources:
          requests:
            cpu: 50m
            cpu: 128m
            memory: 64Mi
          limits:
            cpu: 500m
            memory: 512Mi
            cpu: 256m
            memory: 128Mi
---
apiVersion: v1
kind: Service
+3 −3
Original line number Diff line number Diff line
@@ -44,11 +44,11 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:50052"]
        resources:
          requests:
            cpu: 50m
            cpu: 256m
            memory: 64Mi
          limits:
            cpu: 500m
            memory: 512Mi
            cpu: 512m
            memory: 128Mi
---
apiVersion: v1
kind: Service
+2 −2
Original line number Diff line number Diff line
@@ -108,8 +108,8 @@ spec:
    apiVersion: apps/v1
    kind: Deployment
    name: pathcompservice
  minReplicas: 2
  maxReplicas: 5
  minReplicas: 1
  maxReplicas: 20
  metrics:
  - type: Resource
    resource:
+14 −0
Original line number Diff line number Diff line
NAME            CPU     MEM     metric
context         0.07    65      min
context         0.085   66      avg
context         0.1     71      max
device          0.112   64      min/avg/max
serviceservice  0.034   32      min
serviceservice  0.047   33      avg
serviceservice  0.06    37      max
pathcompservice 0.087   184     min/avg/max
sliceservice    0.028   103     min
sliceservice    0.046   106     avg
sliceservice    0.062   110     max
load-generator  0.192   35      min/avg/max
webuiservice    0.003   75      min/avg/max
Loading