badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright 2020-present Open Networking Foundation |
| 3 | |
Ajay Lotan Thakur | 03189d2 | 2022-02-10 14:06:03 -0600 | [diff] [blame] | 4 | # SPDX-License-Identifier: Apache-2.0 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 5 | */}} |
| 6 | |
| 7 | {{- if .Values.config.webui.deploy }} |
| 8 | --- |
| 9 | apiVersion: v1 |
| 10 | kind: Service |
| 11 | metadata: |
| 12 | name: webui |
| 13 | labels: |
| 14 | {{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 15 | spec: |
| 16 | type: {{ .Values.config.webui.serviceType }} |
| 17 | selector: |
| 18 | {{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 19 | ports: |
| 20 | - name: urlport-http |
| 21 | port: {{ .Values.config.webui.urlport.port }} |
| 22 | protocol: TCP |
| 23 | {{- if eq .Values.config.webui.serviceType "NodePort" }} |
| 24 | {{- if .Values.config.webui.urlport.nodePort }} |
| 25 | nodePort: {{ .Values.config.webui.urlport.nodePort }} |
| 26 | {{- end }} |
| 27 | {{- end }} |
| 28 | - name: grpc |
| 29 | port: {{ .Values.config.webui.grpc.port }} |
| 30 | protocol: TCP |
| 31 | {{- if eq .Values.config.webui.serviceType "NodePort" }} |
| 32 | {{- if .Values.config.webui.grpc.nodePort }} |
| 33 | nodePort: {{ .Values.config.webui.grpc.nodePort }} |
| 34 | {{- end }} |
| 35 | {{- end }} |
| 36 | {{- end }} |