blob: 3c13170c8177b187dc751a0ec32dd19559a8ba4c [file] [log] [blame]
Badhrinath987e1d82020-11-20 13:23:58 -06001{{/*
2# Copyright 2020-present Open Networking Foundation
3
4# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
5*/}}
6
7{{- if .Values.config.udr.deploy }}
8---
9apiVersion: v1
10kind: Service
11metadata:
12 name: udr
13 labels:
14{{ tuple "udr" . | include "5g-control-plane.metadata_labels" | indent 4 }}
15spec:
Hyunsun Moon17354952021-08-21 17:41:26 -070016 type: {{ .Values.config.udr.serviceType }}
Badhrinath987e1d82020-11-20 13:23:58 -060017 selector:
18{{ tuple "udr" . | include "5g-control-plane.metadata_labels" | indent 4 }}
19 ports:
Badhrinath987e1d82020-11-20 13:23:58 -060020 - name: sbi
21 port: {{ .Values.config.udr.sbi.port }}
22 protocol: TCP
Hyunsun Moon17354952021-08-21 17:41:26 -070023{{- if eq .Values.config.udr.serviceType "NodePort" }}
24{{- if .Values.config.udr.sbi.nodePort }}
25 nodePort: {{ .Values.config.udr.sbi.nodePort }}
Badhrinath987e1d82020-11-20 13:23:58 -060026{{- end }}
27{{- end }}
28{{- end }}