blob: 7f00932c0da92f9ffec71bb30b5b8ca67c00b7e2 [file] [log] [blame]
Matteo Scandolo71d97d92021-06-24 11:58:32 +02001---
Joey Armstrong07475092023-01-26 10:56:13 -05002# Copyright 2018-2023 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo71d97d92021-06-24 11:58:32 +02003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16apiVersion: v1
17kind: Service
18metadata:
19 name: {{ template "bbsim.fullname" . }}
20 namespace: {{ .Release.Namespace }}
21 labels:
22 app: "bbsim"
23 name: {{ template "bbsim.name" . }}
24 chart: {{ template "bbsim.chart" . }}
25 release: {{ .Release.Name }}
26 heritage: {{ .Release.Service }}
27spec:
28 type: ClusterIP
29 ports:
30 - name: "bbsim-{{ .Values.olt_id }}"
31 port: {{ .Values.olt_tcp_port }}
32 protocol: TCP
33 - name: "bbsim-{{ .Values.olt_id }}-api"
34 port: {{ .Values.bbsim_api_port }}
35 protocol: TCP
36 - name: "bbsim-{{ .Values.olt_id }}-sadis"
37 port: {{ .Values.bbsim_sadis_port }}
38 protocol: TCP
39 - name: "bbsim-{{ .Values.olt_id }}-rest"
40 port: {{ .Values.bbsim_rest_port }}
41 protocol: TCP
42 - name: "bbsim-{{ .Values.olt_id }}-dmi"
43 port: {{ .Values.bbsim_dmi_port }}
44 protocol: TCP
45 selector:
46 app: "bbsim"
47 name: {{ template "bbsim.name" . }}
48 release: {{ .Release.Name }}