blob: 6c554ec3c0d74d7c3fe0df2dbfcfb98eb4bdb998 [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: common-config
65 mountPath: /tmp/config/free5GC.conf
66 subPath: free5GC.conf
67 - name: nf-config
68 mountPath: /tmp/config/webuicfg.conf
69 subPath: webuicfg.conf
Badhrinath987e1d82020-11-20 13:23:58 -060070 {{- if .Values.config.coreDump.enabled }}
71 - name: coredump
72 mountPath: /tmp/coredump
73 {{- end }}
74 volumes:
Hyunsun Moon6a651482021-02-26 01:46:44 -080075 - name: run-script
Badhrinath987e1d82020-11-20 13:23:58 -060076 configMap:
77 name: webui
78 defaultMode: 493
Hyunsun Moon6a651482021-02-26 01:46:44 -080079 - name: common-config
80 configMap:
81 name: common
82 defaultMode: 493
83 - name: nf-config
Badhrinath987e1d82020-11-20 13:23:58 -060084 configMap:
85 name: webui
Hyunsun Moon6a651482021-02-26 01:46:44 -080086 defaultMode: 493
87 - name: config-dir
88 emptyDir: {}
Badhrinath987e1d82020-11-20 13:23:58 -060089 {{- if .Values.config.coreDump.enabled }}
90 - name: host-rootfs
91 hostPath:
92 path: /
93 - name: coredump
94 hostPath:
95 path: {{ .Values.config.coreDump.path }}
96 {{- end }}
97{{- end }}