blob: 65974e0aebc0dcb6235ee042b6961a9938737a4e [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001{{/*
2# Copyright 2020-present Open Networking Foundation
3
Ajay Lotan Thakur03189d22022-02-10 14:06:03 -06004# SPDX-License-Identifier: Apache-2.0
badhri854c028b32021-11-03 18:24:05 -05005*/}}
6
7{{- if .Values.config.gnbsim.deploy }}
8---
9apiVersion: v1
10kind: Service
11metadata:
12 name: gnbsim
13 labels:
14{{ tuple "gnbsim" . | include "5g-ransim-plane.metadata_labels" | indent 4 }}
15spec:
Ajay Lotan Thakur82c4bec2022-09-02 13:51:45 -060016 type: {{ .Values.config.gnbsim.serviceType }}
badhri854c028b32021-11-03 18:24:05 -050017 selector:
18{{ tuple "gnbsim" . | include "5g-ransim-plane.metadata_labels" | indent 4 }}
19 ports:
20 - name: ngapp
21 port: {{ .Values.config.gnbsim.ngapp.port }}
22 protocol: SCTP
Ajay Lotan Thakur82c4bec2022-09-02 13:51:45 -060023 - name: http-api
24 port: {{ .Values.config.gnbsim.httpServer.port }}
25 protocol: TCP
Ajay Lotan Thakur484545b2022-02-28 14:39:16 -060026{{- if .Values.config.gnbsim.profile.enable }}
27 - name: profile-http
28 port: {{ .Values.config.gnbsim.profile.port }}
29 protocol: TCP
30{{- end }}
badhri854c028b32021-11-03 18:24:05 -050031{{- end }}