Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright 2020-present Open Networking Foundation |
| 3 | |
| 4 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 5 | */}} |
| 6 | |
| 7 | {{- if .Values.config.udm.deploy }} |
| 8 | --- |
| 9 | apiVersion: v1 |
| 10 | kind: Service |
| 11 | metadata: |
| 12 | name: udm |
| 13 | labels: |
| 14 | {{ tuple "udm" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 15 | spec: |
Hyunsun Moon | 1735495 | 2021-08-21 17:41:26 -0700 | [diff] [blame] | 16 | type: {{ .Values.config.udm.serviceType }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 17 | selector: |
| 18 | {{ tuple "udm" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 19 | ports: |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 20 | - name: sbi |
| 21 | port: {{ .Values.config.udm.sbi.port }} |
| 22 | protocol: TCP |
Hyunsun Moon | 1735495 | 2021-08-21 17:41:26 -0700 | [diff] [blame] | 23 | {{- if eq .Values.config.udm.serviceType "NodePort" }} |
| 24 | {{- if .Values.config.udm.sbi.nodePort }} |
| 25 | nodePort: {{ .Values.config.udm.sbi.nodePort }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 26 | {{- end }} |
| 27 | {{- end }} |
| 28 | {{- end }} |