opticalcontrollerservice.yaml 1.92 KB
Newer Older
# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
#
# 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.

Andrea Sgambelluri's avatar
Andrea Sgambelluri committed
apiVersion: apps/v1
kind: Deployment
metadata:
  name: opticalcontrollerservice
spec:
  selector:
    matchLabels:
      app: opticalcontrollerservice
  replicas: 1
  template:
    metadata:
      labels:
        app: opticalcontrollerservice
    spec:
      terminationGracePeriodSeconds: 5
      containers:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        - name: server
          image: localhost:32000/tfs/opticalcontroller:dev
          imagePullPolicy: Never
          ports:
            - containerPort: 10060
            - containerPort: 9192
          env:
            - name: LOG_LEVEL
              value: "INFO"
          #readinessProbe:
          #  exec:
          #    command: ["/bin/grpc_health_probe", "-addr=:10060"]
          #livenessProbe:
          #  exec:
          #    command: ["/bin/grpc_health_probe", "-addr=:10060"]
          resources:
            requests:
              cpu: 500m
              memory: 128Mi
            limits:
              cpu: 1000m
              memory: 1024Mi
Andrea Sgambelluri's avatar
Andrea Sgambelluri committed
---
apiVersion: v1
kind: Service
metadata:
  name: opticalcontrollerservice
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
  labels:
Andrea Sgambelluri's avatar
Andrea Sgambelluri committed
    app: opticalcontrollerservice
spec:
  type: ClusterIP
  selector:
    app: opticalcontrollerservice
  ports:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    - name: grpc
      protocol: TCP
      port: 10060
      targetPort: 10060
    - name: metrics
      protocol: TCP
      port: 9192
      targetPort: 9192