Matteo Scandolo | 71d97d9 | 2021-06-24 11:58:32 +0200 | [diff] [blame^] | 1 | --- |
| 2 | # Copyright 2018-present Open Networking Foundation |
| 3 | # |
| 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 | |
| 16 | apiVersion: v1 |
| 17 | kind: Service |
| 18 | metadata: |
| 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 }} |
| 27 | spec: |
| 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 }} |