Commit 4daf0790 authored by Pablo Armingol's avatar Pablo Armingol
Browse files

Merge branch 'feat/device-perf-eval' of...

Merge branch 'feat/device-perf-eval' of https://labs.etsi.org/rep/tfs/controller into perf/tid-openconfig
parents 15873317 ef969180
Loading
Loading
Loading
Loading
+15 −15
Original line number Diff line number Diff line
@@ -28,17 +28,17 @@ spec:
    spec:
      terminationGracePeriodSeconds: 5
      containers:
      - name: redis
        image: redis:6.2
        ports:
        - containerPort: 6379
        resources:
          requests:
            cpu: 100m
            memory: 128Mi
          limits:
            cpu: 500m
            memory: 1024Mi
      #- name: redis
      #  image: redis:6.2
      #  ports:
      #  - containerPort: 6379
      #  resources:
      #    requests:
      #      cpu: 100m
      #      memory: 128Mi
      #    limits:
      #      cpu: 500m
      #      memory: 1024Mi
      - name: server
        image: registry.gitlab.com/teraflow-h2020/controller/context:latest
        imagePullPolicy: Always
@@ -48,11 +48,11 @@ spec:
        - containerPort: 9192
        env:
        - name: DB_BACKEND
          value: "redis"
          value: "inmemory"
        - name: MB_BACKEND
          value: "redis"
        - name: REDIS_DATABASE_ID
          value: "0"
          value: "inmemory"
        #- name: REDIS_DATABASE_ID
        #  value: "0"
        - name: LOG_LEVEL
          value: "INFO"
        - name: POPULATE_FAKE_DATA
+7 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ spec:
        imagePullPolicy: Always
        ports:
        - containerPort: 8080
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "INFO"
@@ -82,6 +83,8 @@ apiVersion: v1
kind: Service
metadata:
  name: dltservice
  labels:
    app: dltservice
spec:
  type: ClusterIP
  selector:
@@ -91,3 +94,7 @@ spec:
    protocol: TCP
    port: 8080
    targetPort: 8080
  - name: metrics
    protocol: TCP
    port: 9192
    targetPort: 9192
+7 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ spec:
        imagePullPolicy: Always
        ports:
        - containerPort: 10010
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "INFO"
@@ -53,6 +54,8 @@ apiVersion: v1
kind: Service
metadata:
  name: interdomainservice
  labels:
    app: interdomainservice
spec:
  type: ClusterIP
  selector:
@@ -62,3 +65,7 @@ spec:
    protocol: TCP
    port: 10010
    targetPort: 10010
  - name: metrics
    protocol: TCP
    port: 9192
    targetPort: 9192
+9 −0
Original line number Diff line number Diff line
@@ -72,6 +72,9 @@ spec:
        - name: grpc
          containerPort: 7070
          protocol: TCP
        - name: metrics
          containerPort: 9192
          protocol: TCP
        env:
        - name: LOG_LEVEL
          value: "INFO"
@@ -101,6 +104,8 @@ apiVersion: v1
kind: Service
metadata:
  name: monitoringservice
  labels:
    app: monitoringservice
spec:
  type: ClusterIP
  selector:
@@ -122,6 +127,10 @@ spec:
    protocol: TCP
    port: 8812
    targetPort: 8812
  - name: metrics
    protocol: TCP
    port: 9192
    targetPort: 9192

---
apiVersion: networking.k8s.io/v1
+7 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ spec:
        imagePullPolicy: Always
        ports:
        - containerPort: 10020
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "INFO"
@@ -76,6 +77,8 @@ apiVersion: v1
kind: Service
metadata:
  name: pathcompservice
  labels:
    app: pathcompservice
spec:
  type: ClusterIP
  selector:
@@ -89,3 +92,7 @@ spec:
    protocol: TCP
    port: 8081
    targetPort: 8081
  - name: metrics
    protocol: TCP
    port: 9192
    targetPort: 9192
Loading