blob: b91e0949dde190213b02e11954b1fcf06b1dc308 [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.webui.deploy }}
8---
9apiVersion: v1
10kind: Service
11metadata:
12 name: webui
13 labels:
14{{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 4 }}
15spec:
Hyunsun Moon17354952021-08-21 17:41:26 -070016 type: {{ .Values.config.webui.serviceType }}
Badhrinath987e1d82020-11-20 13:23:58 -060017 selector:
18{{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 4 }}
19 ports:
Hyunsun Moon6a651482021-02-26 01:46:44 -080020 - name: urlport-http
21 port: {{ .Values.config.webui.urlport.port }}
22 protocol: TCP
Hyunsun Moon17354952021-08-21 17:41:26 -070023{{- 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 }}
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -050028 - name: grpc
29 port: {{ .Values.config.webui.grpc.port }}
30 protocol: TCP
Hyunsun Moon17354952021-08-21 17:41:26 -070031{{- if eq .Values.config.webui.serviceType "NodePort" }}
32{{- if .Values.config.webui.grpc.nodePort }}
33 nodePort: {{ .Values.config.webui.grpc.nodePort }}
Badhrinath987e1d82020-11-20 13:23:58 -060034{{- end }}
35{{- end }}
36{{- end }}