Commit 974e5f74 authored by Carlos Manso's avatar Carlos Manso
Browse files

Bufixes

parent 6dc71a9a
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -224,10 +224,6 @@ export GRAF_EXT_PORT_HTTP=${GRAF_EXT_PORT_HTTP:-"3000"}
# Deploy TeraFlowSDN
# Deploy TeraFlowSDN
./deploy/tfs.sh
./deploy/tfs.sh


#Configure Subscription WS
./deploy/subscription_ws_ip.sh
./deploy/subscription_ws_e2e.sh

# Show deploy summary
# Show deploy summary
./deploy/show.sh
./deploy/show.sh


+8 −0
Original line number Original line Diff line number Diff line
@@ -43,6 +43,14 @@ spec:
          env:
          env:
            - name: LOG_LEVEL
            - name: LOG_LEVEL
              value: "INFO"
              value: "INFO"
            - name: WS_IP_HOST
              value: "nbiservice.tfs-ip.svc.cluster.local"
            - name: WS_IP_PORT
              value: 8761
            - name: WS_E2E_HOST
              value: "e2e-orchestratorservice.tfs-e2e.svc.cluster.local"
            - name: WS_E2E_PORT
              value: 8762
          readinessProbe:
          readinessProbe:
            exec:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:10050"]
              command: ["/bin/grpc_health_probe", "-addr=:10050"]
+2 −0
Original line number Original line Diff line number Diff line
@@ -44,6 +44,8 @@ spec:
              value: "INFO"
              value: "INFO"
            - name: IETF_NETWORK_RENDERER
            - name: IETF_NETWORK_RENDERER
              value: "LIBYANG"
              value: "LIBYANG"
            - name: WS_E2E_PORT
              value: 8762
          readinessProbe:
          readinessProbe:
            exec:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:9090"]
              command: ["/bin/grpc_health_probe", "-addr=:9090"]
+9 −5
Original line number Original line Diff line number Diff line
@@ -35,17 +35,21 @@ spec:
          image: labs.etsi.org:5050/tfs/controller/vnt_manager:latest
          image: labs.etsi.org:5050/tfs/controller/vnt_manager:latest
          imagePullPolicy: Always
          imagePullPolicy: Always
          ports:
          ports:
            - containerPort: 10070
            - containerPort: 10080
            - containerPort: 9192
            - containerPort: 9192
          env:
          env:
            - name: LOG_LEVEL
            - name: LOG_LEVEL
              value: "INFO"
              value: "INFO"
            - name: WS_IP_PORT
              value: 8761
            - name: WS_E2E_PORT
              value: 8762
          readinessProbe:
          readinessProbe:
            exec:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:10070"]
              command: ["/bin/grpc_health_probe", "-addr=:10080"]
          livenessProbe:
          livenessProbe:
            exec:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:10070"]
              command: ["/bin/grpc_health_probe", "-addr=:10080"]
          resources:
          resources:
            requests:
            requests:
              cpu: 200m
              cpu: 200m
@@ -66,8 +70,8 @@ spec:
    app: vnt-managerservice
    app: vnt-managerservice
  ports:
  ports:
    - name: grpc
    - name: grpc
      port: 10070
      port: 10080
      targetPort: 10070
      targetPort: 10080
    - name: metrics
    - name: metrics
      port: 9192
      port: 9192
      targetPort: 9192
      targetPort: 9192
+2 −2
Original line number Original line Diff line number Diff line
@@ -63,10 +63,10 @@ export TFS_COMPONENTS="context device pathcomp service slice nbi webui load_gene
#export TFS_COMPONENTS="${TFS_COMPONENTS} forecaster"
#export TFS_COMPONENTS="${TFS_COMPONENTS} forecaster"


# Uncomment to activate E2E Orchestrator
# Uncomment to activate E2E Orchestrator
export TFS_COMPONENTS="${TFS_COMPONENTS} e2e_orchestrator"
# export TFS_COMPONENTS="${TFS_COMPONENTS} e2e_orchestrator"


# Uncomment to activate VNT Manager
# Uncomment to activate VNT Manager
export TFS_COMPONENTS="${TFS_COMPONENTS} vnt_manager"
# export TFS_COMPONENTS="${TFS_COMPONENTS} vnt_manager"


# Uncomment to activate DLT and Interdomain
# Uncomment to activate DLT and Interdomain
#export TFS_COMPONENTS="${TFS_COMPONENTS} interdomain dlt"
#export TFS_COMPONENTS="${TFS_COMPONENTS} interdomain dlt"
Loading