blob: 508838ef66ee9d560d61c2ebd1f858dc8d5cb544 [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 }}
46 imagePullPolicy: {{ .Values.images.pullPolicy }}
47 {{- if .Values.config.coreDump.enabled }}
48 securityContext:
49 runAsUser: 0
50 {{- end }}
51 stdin: true
52 tty: true
Hyunsun Moon6a651482021-02-26 01:46:44 -080053 command: ["/free5gc/script/webui-run.sh"]
Badhrinath987e1d82020-11-20 13:23:58 -060054 {{- if .Values.resources.enabled }}
55 resources:
56{{ toYaml .Values.resources.webui | indent 10 }}
57 {{- end }}
58 volumeMounts:
Hyunsun Moon6a651482021-02-26 01:46:44 -080059 - name: run-script
60 mountPath: /free5gc/script/webui-run.sh
Badhrinath987e1d82020-11-20 13:23:58 -060061 subPath: webui-run.sh
Hyunsun Moon6a651482021-02-26 01:46:44 -080062 - name: config-dir
Badhrinath987e1d82020-11-20 13:23:58 -060063 mountPath: /free5gc/config
Hyunsun Moon6a651482021-02-26 01:46:44 -080064 - name: nf-config
Hyunsun Moon64f34352021-05-25 21:22:00 +000065 mountPath: /tmp/config/webuicfg.conf
66 subPath: webuicfg.conf
Badhrinath987e1d82020-11-20 13:23:58 -060067 {{- if .Values.config.coreDump.enabled }}
68 - name: coredump
69 mountPath: /tmp/coredump
70 {{- end }}
71 volumes:
Hyunsun Moon6a651482021-02-26 01:46:44 -080072 - name: run-script
Badhrinath987e1d82020-11-20 13:23:58 -060073 configMap:
74 name: webui
75 defaultMode: 493
Hyunsun Moon6a651482021-02-26 01:46:44 -080076 - name: nf-config
Badhrinath987e1d82020-11-20 13:23:58 -060077 configMap:
78 name: webui
Hyunsun Moon6a651482021-02-26 01:46:44 -080079 defaultMode: 493
80 - name: config-dir
81 emptyDir: {}
Badhrinath987e1d82020-11-20 13:23:58 -060082 {{- if .Values.config.coreDump.enabled }}
83 - name: host-rootfs
84 hostPath:
85 path: /
86 - name: coredump
87 hostPath:
88 path: {{ .Values.config.coreDump.path }}
89 {{- end }}
90{{- end }}