blob: a5e267a061aa1fa5e1c746927ca267d7c188ee41 [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.ausf.deploy }}
8---
9apiVersion: v1
10kind: Service
11metadata:
12 name: ausf
13 labels:
14{{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
15spec:
16 type: {{ .Values.config.ausf.serviceType }}
17 selector:
18{{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
19 ports:
20 - name: sbi
21 port: {{ .Values.config.ausf.sbi.port }}
22 protocol: TCP
23{{- if eq .Values.config.ausf.serviceType "NodePort" }}
24{{- if .Values.config.ausf.sbi.nodePort }}
25 nodePort: {{ .Values.config.ausf.sbi.nodePort }}
26{{- end }}
27{{- end }}
28{{- end }}