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.smf.deploy }} |
| 8 | --- |
| 9 | apiVersion: v1 |
| 10 | kind: Service |
| 11 | metadata: |
| 12 | name: smf |
| 13 | labels: |
| 14 | {{ tuple "smf" . | 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.smf.serviceType }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 17 | selector: |
| 18 | {{ tuple "smf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 19 | ports: |
| 20 | - name: pfcp |
| 21 | port: {{ .Values.config.smf.n4.port }} |
| 22 | protocol: UDP |
Hyunsun Moon | 1735495 | 2021-08-21 17:41:26 -0700 | [diff] [blame] | 23 | {{- if eq .Values.config.smf.serviceType "NodePort" }} |
| 24 | {{- if .Values.config.smf.n4.nodePort }} |
| 25 | nodePort: {{ .Values.config.smf.n4.nodePort }} |
| 26 | {{- end }} |
| 27 | {{- end }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 28 | - name: prometheus-exporter |
| 29 | port: {{ .Values.config.smf.prometheus.port }} |
| 30 | protocol: TCP |
Hyunsun Moon | 1735495 | 2021-08-21 17:41:26 -0700 | [diff] [blame] | 31 | {{- if eq .Values.config.smf.serviceType "NodePort" }} |
| 32 | {{- if .Values.config.smf.prometheus.nodePort }} |
| 33 | nodePort: {{ .Values.config.smf.prometheus.nodePort }} |
| 34 | {{- end }} |
| 35 | {{- end }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 36 | - name: sbi |
| 37 | port: {{ .Values.config.smf.sbi.port }} |
| 38 | protocol: TCP |
Hyunsun Moon | 1735495 | 2021-08-21 17:41:26 -0700 | [diff] [blame] | 39 | {{- if eq .Values.config.smf.serviceType "NodePort" }} |
| 40 | {{- if .Values.config.smf.sbi.nodePort }} |
| 41 | nodePort: {{ .Values.config.smf.sbi.nodePort }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 42 | {{- end }} |
| 43 | {{- end }} |
| 44 | {{- end }} |