blob: 12d9de867a104da4aac52d146ee37b265cbf0701 [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{{ tuple "webui" . | include "5g-control-plane.service_account" }}
9---
10apiVersion: apps/v1
11kind: Deployment
12metadata:
13 name: webui
14 labels:
15{{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 4 }}
16spec:
17 replicas: 1
18 selector:
19 matchLabels:
20{{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 6 }}
21 template:
22 metadata:
23 labels:
24{{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 8 }}
25 {{- with .Values.config.webui.podAnnotations }}
26 annotations:
27 {{- toYaml . | nindent 8 }}
28 {{- end }}
29 spec:
Badhrinath987e1d82020-11-20 13:23:58 -060030 serviceAccountName: webui
Hyunsun Moon6a651482021-02-26 01:46:44 -080031 {{- if hasKey .Values.images "pullSecrets" }}
Badhrinath987e1d82020-11-20 13:23:58 -060032 imagePullSecrets:
Hyunsun Moon6a651482021-02-26 01:46:44 -080033{{ toYaml .Values.images.pullSecrets | indent 8 }}
Badhrinath987e1d82020-11-20 13:23:58 -060034 {{- end }}
35 initContainers:
Hyunsun Moon6a651482021-02-26 01:46:44 -080036 - name: wait-webui-module
Badhrinath987e1d82020-11-20 13:23:58 -060037 image: {{ .Values.images.tags.init | quote }}
38 imagePullPolicy: {{ .Values.images.pullPolicy }}
Hyunsun Moon6a651482021-02-26 01:46:44 -080039 command: ['sh', '-c', 'until nslookup webui; do echo waiting for webui; sleep 4; done;']
Badhrinath987e1d82020-11-20 13:23:58 -060040 {{- if .Values.config.coreDump.enabled }}
41{{ tuple "webui" . | include "5g-control-plane.coredump_init" | indent 6 }}
42 {{- end }}
43 containers:
44 - name: webui
45 image: {{ .Values.images.tags.webui }}
badhrinath.pa@gmail.comb918a802021-06-16 20:24:17 -050046 env:
47 - name: GRPC_GO_LOG_VERBOSITY_LEVEL
48 value: {{ .Values.config.grpc.golog_verbosity | quote }}
49 - name: GRPC_GO_LOG_SEVERITY_LEVEL
50 value: {{ .Values.config.grpc.severity | quote }}
51 - name: GRPC_TRACE
52 value: {{ .Values.config.grpc.trace | quote }}
53 - name: GRPC_VERBOSITY
54 value: {{ .Values.config.grpc.verbosity | quote }}
Badhrinath987e1d82020-11-20 13:23:58 -060055 imagePullPolicy: {{ .Values.images.pullPolicy }}
56 {{- if .Values.config.coreDump.enabled }}
57 securityContext:
58 runAsUser: 0
59 {{- end }}
60 stdin: true
61 tty: true
Hyunsun Moon6a651482021-02-26 01:46:44 -080062 command: ["/free5gc/script/webui-run.sh"]
Badhrinath987e1d82020-11-20 13:23:58 -060063 {{- if .Values.resources.enabled }}
64 resources:
65{{ toYaml .Values.resources.webui | indent 10 }}
66 {{- end }}
67 volumeMounts:
Hyunsun Moon6a651482021-02-26 01:46:44 -080068 - name: run-script
69 mountPath: /free5gc/script/webui-run.sh
Badhrinath987e1d82020-11-20 13:23:58 -060070 subPath: webui-run.sh
Hyunsun Moon6a651482021-02-26 01:46:44 -080071 - name: nf-config
Hyunsun Moon858a1092021-05-25 21:51:56 +000072 mountPath: /free5gc/config
Badhrinath987e1d82020-11-20 13:23:58 -060073 {{- if .Values.config.coreDump.enabled }}
74 - name: coredump
75 mountPath: /tmp/coredump
76 {{- end }}
77 volumes:
Hyunsun Moon6a651482021-02-26 01:46:44 -080078 - name: run-script
Badhrinath987e1d82020-11-20 13:23:58 -060079 configMap:
80 name: webui
81 defaultMode: 493
Hyunsun Moon6a651482021-02-26 01:46:44 -080082 - name: nf-config
Badhrinath987e1d82020-11-20 13:23:58 -060083 configMap:
84 name: webui
Hyunsun Moon6a651482021-02-26 01:46:44 -080085 defaultMode: 493
Badhrinath987e1d82020-11-20 13:23:58 -060086 {{- if .Values.config.coreDump.enabled }}
87 - name: host-rootfs
88 hostPath:
89 path: /
90 - name: coredump
91 hostPath:
92 path: {{ .Values.config.coreDump.path }}
93 {{- end }}
94{{- end }}