Skip to content
e2e_orchestratorservice.yaml 2.39 KiB
Newer Older
# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (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: e2e-orchestratorservice
spec:
  selector:
    matchLabels:
      app: e2e-orchestratorservice
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
  replicas: 1
Carlos Manso's avatar
Carlos Manso committed
      annotations:
Carlos Manso's avatar
Carlos Manso committed
        config.linkerd.io/skip-outbound-ports: "8761"
Carlos Manso's avatar
Carlos Manso committed
        config.linkerd.io/skip-inbound-ports: "8761"
        app: e2e-orchestratorservice
    spec:
      terminationGracePeriodSeconds: 5
      containers:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        - name: server
          image: labs.etsi.org:5050/tfs/controller/e2e_orchestrator:latest
          imagePullPolicy: Always
          ports:
            - containerPort: 10050
            - containerPort: 9192
Carlos Manso's avatar
Carlos Manso committed
            - containerPort: 8761
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
          env:
            - name: LOG_LEVEL
              value: "INFO"
Carlos Manso's avatar
Carlos Manso committed
            - 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
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
          readinessProbe:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:10050"]
          livenessProbe:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:10050"]
          resources:
            requests:
Carlos Manso's avatar
Carlos Manso committed
              cpu: 250m
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
              memory: 128Mi
            limits:
              cpu: 1000m
              memory: 1024Mi
---
apiVersion: v1
kind: Service
metadata:
  name: e2e-orchestratorservice
    app: e2e-orchestratorservice
spec:
  type: ClusterIP
  selector:
    app: e2e-orchestratorservice
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    - name: grpc
      port: 10050
      targetPort: 10050
    - name: metrics
      port: 9192
      targetPort: 9192
Carlos Manso's avatar
Carlos Manso committed
    - name: ws
Carlos Manso's avatar
Carlos Manso committed
      port: 8761
      targetPort: 8761