blob: 1f9f7c40ebf9b9b8d1440325fae3848e73432d3d [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001{{/*
2# Copyright 2020-present Open Networking Foundation
3
4# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
5*/}}
6
7{{- if .Values.config.pcf.deploy }}
8---
9apiVersion: v1
10kind: Service
11metadata:
12 name: pcf
13 labels:
14{{ tuple "pcf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
15spec:
16 type: {{ .Values.config.pcf.serviceType }}
17 selector:
18{{ tuple "pcf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
19 ports:
20 - name: sbi
21 port: {{ .Values.config.pcf.sbi.port }}
22 protocol: TCP
23{{- if eq .Values.config.pcf.serviceType "NodePort" }}
24{{- if .Values.config.pcf.sbi.nodePort }}
25 nodePort: {{ .Values.config.pcf.sbi.nodePort }}
26{{- end }}
27{{- end }}
28{{- end }}