blob: 9e957988365eb39ab4a049c59f862899fd9723fc [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001{{/*
2# Copyright 2020-present Open Networking Foundation
3
Ajay Lotan Thakur03189d22022-02-10 14:06:03 -06004# SPDX-License-Identifier: Apache-2.0
badhri854c028b32021-11-03 18:24:05 -05005*/}}
6
7{{- if .Values.config.nrf.deploy }}
8{{ tuple "nrf" . | include "5g-control-plane.service_account" }}
9---
10apiVersion: apps/v1
11kind: Deployment
12metadata:
13 name: nrf
14 labels:
15{{ tuple "nrf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
16spec:
17 replicas: 1
18 #serviceName: nrf-headless
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:
33 serviceAccountName: nrf
34 {{- if hasKey .Values.images "pullSecrets" }}
35 imagePullSecrets:
36{{ toYaml .Values.images.pullSecrets | indent 8 }}
37 {{- end }}
Ajay Lotan Thakurd9252122022-08-30 22:35:59 +000038 {{- if .Values.config.coreDump.enabled }}
badhri854c028b32021-11-03 18:24:05 -050039 initContainers:
Ajay Lotan Thakurd9252122022-08-30 22:35:59 +000040 {{ tuple "nrf" . | include "5g-control-plane.coredump_init" | indent 6 }}
41 {{- end }}
badhri854c028b32021-11-03 18:24:05 -050042 containers:
43 - name: nrf
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -070044 image: {{ .Values.images.repository }}{{ .Values.images.tags.nrf }}
badhri854c028b32021-11-03 18:24:05 -050045 imagePullPolicy: {{ .Values.images.pullPolicy }}
46 {{- if .Values.config.coreDump.enabled }}
47 securityContext:
48 runAsUser: 0
49 {{- end }}
50 stdin: true
51 tty: true
Ajay Thakurb0028b62022-02-04 17:47:29 +000052 command: ["/free5gc/script/nrf-run.sh"]
badhri854c028b32021-11-03 18:24:05 -050053 env:
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 }}
62 - name: POD_IP
63 valueFrom:
64 fieldRef:
65 fieldPath: status.podIP
66 {{- if .Values.config.managedByConfigPod.enabled }}
67 - name: MANAGED_BY_CONFIG_POD
68 value: "true"
69 {{- end }}
70 {{- if .Values.resources.enabled }}
71 resources:
72{{ toYaml .Values.resources.nrf | indent 10 }}
73 {{- end }}
74 volumeMounts:
Ajay Thakurb0028b62022-02-04 17:47:29 +000075 - name: run-script
badhri854c028b32021-11-03 18:24:05 -050076 mountPath: /free5gc/script/nrf-run.sh
77 subPath: nrf-run.sh
Vijaya Rani Tiruveeduladd579db2022-02-03 16:57:10 +053078 - name: nf-config
Ajay Thakurb0028b62022-02-04 17:47:29 +000079 mountPath: /free5gc/config
badhri854c028b32021-11-03 18:24:05 -050080 {{- if .Values.config.coreDump.enabled }}
81 - name: coredump
82 mountPath: /tmp/coredump
83 {{- end }}
84 volumes:
badhri854c028b32021-11-03 18:24:05 -050085 - name: run-script
86 configMap:
87 name: nrf
88 defaultMode: 493
89 - name: nf-config
90 configMap:
91 name: nrf
92 defaultMode: 493
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 }}