Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 1 | {{/* |
| 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 | --- |
| 10 | apiVersion: apps/v1 |
| 11 | kind: Deployment |
| 12 | metadata: |
| 13 | name: webui |
| 14 | labels: |
| 15 | {{ tuple "webui" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 16 | spec: |
| 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: |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 30 | serviceAccountName: webui |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 31 | {{- if hasKey .Values.images "pullSecrets" }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 32 | imagePullSecrets: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 33 | {{ toYaml .Values.images.pullSecrets | indent 8 }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 34 | {{- end }} |
| 35 | initContainers: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 36 | - name: wait-webui-module |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 37 | image: {{ .Values.images.tags.init | quote }} |
| 38 | imagePullPolicy: {{ .Values.images.pullPolicy }} |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 39 | command: ['sh', '-c', 'until nslookup webui; do echo waiting for webui; sleep 4; done;'] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 40 | {{- 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 Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 53 | command: ["/free5gc/script/webui-run.sh"] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 54 | {{- if .Values.resources.enabled }} |
| 55 | resources: |
| 56 | {{ toYaml .Values.resources.webui | indent 10 }} |
| 57 | {{- end }} |
| 58 | volumeMounts: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 59 | - name: run-script |
| 60 | mountPath: /free5gc/script/webui-run.sh |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 61 | subPath: webui-run.sh |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 62 | - name: config-dir |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 63 | mountPath: /free5gc/config |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 64 | - 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 |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 70 | {{- if .Values.config.coreDump.enabled }} |
| 71 | - name: coredump |
| 72 | mountPath: /tmp/coredump |
| 73 | {{- end }} |
| 74 | volumes: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 75 | - name: run-script |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 76 | configMap: |
| 77 | name: webui |
| 78 | defaultMode: 493 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 79 | - name: common-config |
| 80 | configMap: |
| 81 | name: common |
| 82 | defaultMode: 493 |
| 83 | - name: nf-config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 84 | configMap: |
| 85 | name: webui |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 86 | defaultMode: 493 |
| 87 | - name: config-dir |
| 88 | emptyDir: {} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 89 | {{- 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 }} |