Commit 0b4e791e authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch 'feat/cttc-interdomain-r21' into 'develop'

Minor fixes

See merge request !131
parents 0a1ba6d4 ff3398f5
Loading
Loading
Loading
Loading
+24 −24
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ spec:
        - name: MB_BACKEND
          value: "nats"
        - name: LOG_LEVEL
          value: "DEBUG"
          value: "INFO"
        envFrom:
        - secretRef:
            name: crdb-data
@@ -54,7 +54,7 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:1010"]
        resources:
          requests:
            cpu: 125m
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 1000m
@@ -79,25 +79,25 @@ spec:
    protocol: TCP
    port: 9192
    targetPort: 9192
#---
#apiVersion: autoscaling/v2
#kind: HorizontalPodAutoscaler
#metadata:
#  name: contextservice-hpa
#spec:
#  scaleTargetRef:
#    apiVersion: apps/v1
#    kind: Deployment
#    name: contextservice
#  minReplicas: 1
#  maxReplicas: 20
#  metrics:
#  - type: Resource
#    resource:
#      name: cpu
#      target:
#        type: Utilization
#        averageUtilization: 80
#  #behavior:
#  #  scaleDown:
#  #    stabilizationWindowSeconds: 30
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: contextservice-hpa
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: contextservice
  minReplicas: 1
  maxReplicas: 20
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 80
  #behavior:
  #  scaleDown:
  #    stabilizationWindowSeconds: 30
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ spec:
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "DEBUG"
          value: "INFO"
        readinessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:2020"]
@@ -48,7 +48,7 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:2020"]
        resources:
          requests:
            cpu: 125m
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 1000m
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ spec:
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "DEBUG"
          value: "INFO"
        - name: TOPOLOGY_ABSTRACTOR
          value: "DISABLE"
        readinessProbe:
@@ -46,7 +46,7 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:10010"]
        resources:
          requests:
            cpu: 125m
            cpu: 250m
            memory: 64Mi
          limits:
            cpu: 1000m
+23 −23
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:10020"]
        resources:
          requests:
            cpu: 125m
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 1000m
@@ -98,25 +98,25 @@ spec:
    protocol: TCP
    port: 9192
    targetPort: 9192
#---
#apiVersion: autoscaling/v2
#kind: HorizontalPodAutoscaler
#metadata:
#  name: pathcompservice-hpa
#spec:
#  scaleTargetRef:
#    apiVersion: apps/v1
#    kind: Deployment
#    name: pathcompservice
#  minReplicas: 1
#  maxReplicas: 20
#  metrics:
#  - type: Resource
#    resource:
#      name: cpu
#      target:
#        type: Utilization
#        averageUtilization: 80
#  #behavior:
#  #  scaleDown:
#  #    stabilizationWindowSeconds: 30
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: pathcompservice-hpa
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: pathcompservice
  minReplicas: 1
  maxReplicas: 20
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 80
  #behavior:
  #  scaleDown:
  #    stabilizationWindowSeconds: 30
+24 −24
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ spec:
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "DEBUG"
          value: "INFO"
        readinessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:3030"]
@@ -45,7 +45,7 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:3030"]
        resources:
          requests:
            cpu: 125m
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 1000m
@@ -70,25 +70,25 @@ spec:
    protocol: TCP
    port: 9192
    targetPort: 9192
#---
#apiVersion: autoscaling/v2
#kind: HorizontalPodAutoscaler
#metadata:
#  name: serviceservice-hpa
#spec:
#  scaleTargetRef:
#    apiVersion: apps/v1
#    kind: Deployment
#    name: serviceservice
#  minReplicas: 1
#  maxReplicas: 20
#  metrics:
#  - type: Resource
#    resource:
#      name: cpu
#      target:
#        type: Utilization
#        averageUtilization: 80
#  #behavior:
#  #  scaleDown:
#  #    stabilizationWindowSeconds: 30
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: serviceservice-hpa
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: serviceservice
  minReplicas: 1
  maxReplicas: 20
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 80
  #behavior:
  #  scaleDown:
  #    stabilizationWindowSeconds: 30
Loading