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

Merge branch 'feat/1-cttc-forecaster-component' into 'develop'

Resolve "(CTTC) Forecaster component"

Closes #1

See merge request !160
parents 55634379 79dc4633
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ include:
  # - local: '/src/opticalattackmanager/.gitlab-ci.yml'
  - local: '/src/ztp/.gitlab-ci.yml'
  - local: '/src/policy/.gitlab-ci.yml'
  - local: '/src/forecaster/.gitlab-ci.yml'
  #- local: '/src/webui/.gitlab-ci.yml'
  #- local: '/src/l3_distributedattackdetector/.gitlab-ci.yml'
  #- local: '/src/l3_centralizedattackdetector/.gitlab-ci.yml'
+101 −0
Original line number Diff line number Diff line
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: forecasterservice
spec:
  selector:
    matchLabels:
      app: forecasterservice
  #replicas: 1
  template:
    metadata:
      labels:
        app: forecasterservice
    spec:
      terminationGracePeriodSeconds: 5
      containers:
      - name: server
        image: labs.etsi.org:5050/tfs/controller/forecaster:latest
        imagePullPolicy: Always
        ports:
        - containerPort: 10040
        - containerPort: 9192
        env:
        - name: LOG_LEVEL
          value: "INFO"
        - name: FORECAST_TO_HISTORY_RATIO
          value: "10"
        startupProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:10040"]
          failureThreshold: 30
          periodSeconds: 1
        readinessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:10040"]
        livenessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:10040"]
        resources:
          requests:
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 1000m
            memory: 1024Mi
---
apiVersion: v1
kind: Service
metadata:
  name: forecasterservice
  labels:
    app: forecasterservice
spec:
  type: ClusterIP
  selector:
    app: forecasterservice
  ports:
  - name: grpc
    protocol: TCP
    port: 10040
    targetPort: 10040
  - name: metrics
    protocol: TCP
    port: 9192
    targetPort: 9192
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: forecasterservice-hpa
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: forecasterservice
  minReplicas: 1
  maxReplicas: 20
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 80
  #behavior:
  #  scaleDown:
  #    stabilizationWindowSeconds: 30
+2 −0
Original line number Diff line number Diff line
@@ -37,6 +37,8 @@ spec:
        env:
        - name: LOG_LEVEL
          value: "INFO"
        - name: ENABLE_FORECASTER
          value: "YES"
        readinessProbe:
          exec:
            command: ["/bin/grpc_health_probe", "-addr=:10020"]
+3 −0
Original line number Diff line number Diff line
@@ -40,6 +40,9 @@ export TFS_COMPONENTS="context device pathcomp service slice compute webui load_
# Uncomment to activate TE
#export TFS_COMPONENTS="${TFS_COMPONENTS} te"

# Uncomment to activate Forecaster
#export TFS_COMPONENTS="${TFS_COMPONENTS} forecaster"

# Set the tag you want to use for your images.
export TFS_IMAGE_TAG="dev"

+6 −0
Original line number Diff line number Diff line
@@ -236,10 +236,16 @@ message LinkId {
  Uuid link_uuid = 1;
}

message LinkAttributes {
  float total_capacity_gbps = 1;
  float used_capacity_gbps  = 2;
}

message Link {
  LinkId link_id = 1;
  string name = 2;
  repeated EndPointId link_endpoint_ids = 3;
  LinkAttributes attributes = 4;
}

message LinkIdList {
Loading