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.nrf.deploy }} |
| 8 | {{ tuple "nrf" . | include "5g-control-plane.service_account" }} |
| 9 | --- |
| 10 | apiVersion: apps/v1 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 11 | kind: Deployment |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 12 | metadata: |
| 13 | name: nrf |
| 14 | labels: |
| 15 | {{ tuple "nrf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 16 | spec: |
| 17 | replicas: 1 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 18 | #serviceName: nrf-headless |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 19 | selector: |
| 20 | matchLabels: |
| 21 | {{ tuple "nrf" . | include "5g-control-plane.metadata_labels" | indent 6 }} |
| 22 | template: |
| 23 | metadata: |
| 24 | labels: |
| 25 | {{ tuple "nrf" . | include "5g-control-plane.metadata_labels" | indent 8 }} |
| 26 | {{- with .Values.config.nrf.podAnnotations }} |
| 27 | annotations: |
| 28 | helm.sh/hook: pre-install |
| 29 | helm.sh/hook-weight: "2" |
| 30 | {{- toYaml . | nindent 8 }} |
| 31 | {{- end }} |
| 32 | spec: |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 33 | serviceAccountName: nrf |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 34 | {{- if hasKey .Values.images "pullSecrets" }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 35 | imagePullSecrets: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 36 | {{ toYaml .Values.images.pullSecrets | indent 8 }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 37 | {{- end }} |
| 38 | {{- if .Values.config.coreDump.enabled }} |
| 39 | initContainers: |
| 40 | {{ tuple "nrf" . | include "5g-control-plane.coredump_init" | indent 6 }} |
| 41 | {{- end }} |
| 42 | containers: |
| 43 | - name: nrf |
| 44 | image: {{ .Values.images.tags.nrf }} |
| 45 | imagePullPolicy: {{ .Values.images.pullPolicy }} |
| 46 | {{- if .Values.config.coreDump.enabled }} |
| 47 | securityContext: |
| 48 | runAsUser: 0 |
| 49 | {{- end }} |
| 50 | stdin: true |
| 51 | tty: true |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 52 | command: ["/free5gc/script/nrf-run.sh"] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 53 | env: |
Ajay Lotan Thakur | 45ea2f9 | 2021-06-25 03:07:59 -0500 | [diff] [blame] | 54 | - name: GRPC_GO_LOG_VERBOSITY_LEVEL |
| 55 | value: {{ .Values.config.grpc.golog_verbosity | quote }} |
| 56 | - name: GRPC_GO_LOG_SEVERITY_LEVEL |
| 57 | value: {{ .Values.config.grpc.severity | quote }} |
| 58 | - name: GRPC_TRACE |
| 59 | value: {{ .Values.config.grpc.trace | quote }} |
| 60 | - name: GRPC_VERBOSITY |
| 61 | value: {{ .Values.config.grpc.verbosity | quote }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 62 | - name: POD_IP |
| 63 | valueFrom: |
| 64 | fieldRef: |
| 65 | fieldPath: status.podIP |
Ajay Lotan Thakur | 45ea2f9 | 2021-06-25 03:07:59 -0500 | [diff] [blame] | 66 | {{- if .Values.config.managedByConfigPod.enabled }} |
| 67 | - name: MANAGED_BY_CONFIG_POD |
| 68 | value: "true" |
| 69 | {{- end }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 70 | {{- if .Values.resources.enabled }} |
| 71 | resources: |
| 72 | {{ toYaml .Values.resources.nrf | indent 10 }} |
| 73 | {{- end }} |
| 74 | volumeMounts: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 75 | - name: run-script |
| 76 | mountPath: /free5gc/script/nrf-run.sh |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 77 | subPath: nrf-run.sh |
Hyunsun Moon | 64f3435 | 2021-05-25 21:22:00 +0000 | [diff] [blame] | 78 | - name: nf-config |
Hyunsun Moon | 858a109 | 2021-05-25 21:51:56 +0000 | [diff] [blame] | 79 | mountPath: /free5gc/config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 80 | {{- if .Values.config.coreDump.enabled }} |
| 81 | - name: coredump |
| 82 | mountPath: /tmp/coredump |
| 83 | {{- end }} |
| 84 | volumes: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 85 | - name: run-script |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 86 | configMap: |
| 87 | name: nrf |
| 88 | defaultMode: 493 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 89 | - name: nf-config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 90 | configMap: |
| 91 | name: nrf |
| 92 | defaultMode: 493 |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 93 | {{- if .Values.config.coreDump.enabled }} |
| 94 | - name: host-rootfs |
| 95 | hostPath: |
| 96 | path: / |
| 97 | - name: coredump |
| 98 | hostPath: |
| 99 | path: {{ .Values.config.coreDump.path }} |
| 100 | {{- end }} |
| 101 | {{- end }} |