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 }} |
badhrinath.pa@gmail.com | b918a80 | 2021-06-16 20:24:17 -0500 | [diff] [blame] | 46 | 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 }} |
Ajay Lotan Thakur | b7c83b6 | 2021-07-29 13:13:41 -0500 | [diff] [blame] | 55 | - name: CONFIGPOD_DEPLOYMENT |
| 56 | value: "5G" |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 57 | imagePullPolicy: {{ .Values.images.pullPolicy }} |
| 58 | {{- if .Values.config.coreDump.enabled }} |
| 59 | securityContext: |
| 60 | runAsUser: 0 |
| 61 | {{- end }} |
| 62 | stdin: true |
| 63 | tty: true |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 64 | command: ["/free5gc/script/webui-run.sh"] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 65 | {{- if .Values.resources.enabled }} |
| 66 | resources: |
| 67 | {{ toYaml .Values.resources.webui | indent 10 }} |
| 68 | {{- end }} |
| 69 | volumeMounts: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 70 | - name: run-script |
| 71 | mountPath: /free5gc/script/webui-run.sh |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 72 | subPath: webui-run.sh |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 73 | - name: nf-config |
Hyunsun Moon | 858a109 | 2021-05-25 21:51:56 +0000 | [diff] [blame] | 74 | mountPath: /free5gc/config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 75 | {{- if .Values.config.coreDump.enabled }} |
| 76 | - name: coredump |
| 77 | mountPath: /tmp/coredump |
| 78 | {{- end }} |
| 79 | volumes: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 80 | - name: run-script |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 81 | configMap: |
| 82 | name: webui |
| 83 | defaultMode: 493 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 84 | - name: nf-config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 85 | configMap: |
| 86 | name: webui |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 87 | defaultMode: 493 |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 88 | {{- if .Values.config.coreDump.enabled }} |
| 89 | - name: host-rootfs |
| 90 | hostPath: |
| 91 | path: / |
| 92 | - name: coredump |
| 93 | hostPath: |
| 94 | path: {{ .Values.config.coreDump.path }} |
| 95 | {{- end }} |
| 96 | {{- end }} |