blob: da8fcfa411d95580d5e62fa695275c599d779419 [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.ausf.deploy }}
8{{ tuple "ausf" . | include "5g-control-plane.service_account" }}
9---
10apiVersion: apps/v1
11kind: Deployment
12metadata:
13 name: ausf
14 labels:
15{{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
16spec:
17 replicas: 1
18 #serviceName: ausf-headless
19 selector:
20 matchLabels:
21{{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 6 }}
22 template:
23 metadata:
24 labels:
25{{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 8 }}
26 {{- with .Values.config.ausf.podAnnotations }}
27 annotations:
28 helm.sh/hook: pre-install
29 helm.sh/hook-weight: "5"
30 {{- toYaml . | nindent 8 }}
31 {{- end }}
32 spec:
33 serviceAccountName: ausf
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 initContainers:
Ajay Lotan Thakureadf7702022-09-30 00:02:58 -060039 - name: wait-ausf-module2
40 image: {{ .Values.images.repository }}{{ .Values.images.tags.init }}
41 imagePullPolicy: {{ .Values.images.pullPolicy }}
42 command: ['sh', '-c', 'until nslookup ausf; do echo waiting for ausf; sleep 4; done;']
43 {{- if .Values.config.coreDump.enabled }}
badhri854c028b32021-11-03 18:24:05 -050044{{ tuple "ausf" . | include "5g-control-plane.coredump_init" | indent 6 }}
45 {{- end }}
46 containers:
47 - name: ausf
Ajay Lotan Thakur71115fe2022-03-03 22:26:08 -070048 image: {{ .Values.images.repository }}{{ .Values.images.tags.ausf }}
badhri854c028b32021-11-03 18:24:05 -050049 imagePullPolicy: {{ .Values.images.pullPolicy }}
50 {{- if .Values.config.coreDump.enabled }}
51 securityContext:
52 runAsUser: 0
53 {{- end }}
54 stdin: true
55 tty: true
Ajay Thakurb0028b62022-02-04 17:47:29 +000056 command: ["/free5gc/script/ausf-run.sh"]
badhri854c028b32021-11-03 18:24:05 -050057 env:
58 - name: GRPC_GO_LOG_VERBOSITY_LEVEL
59 value: {{ .Values.config.grpc.golog_verbosity | quote }}
60 - name: GRPC_GO_LOG_SEVERITY_LEVEL
61 value: {{ .Values.config.grpc.severity | quote }}
62 - name: GRPC_TRACE
63 value: {{ .Values.config.grpc.trace | quote }}
64 - name: GRPC_VERBOSITY
65 value: {{ .Values.config.grpc.verbosity | quote }}
66 - name: POD_IP
67 valueFrom:
68 fieldRef:
69 fieldPath: status.podIP
70 {{- if .Values.config.managedByConfigPod.enabled }}
71 - name: MANAGED_BY_CONFIG_POD
72 value: "true"
73 {{- end }}
74 {{- if .Values.resources.enabled }}
75 resources:
76{{ toYaml .Values.resources.ausf | indent 10 }}
77 {{- end }}
78 volumeMounts:
Ajay Thakurb0028b62022-02-04 17:47:29 +000079 - name: run-script
badhri854c028b32021-11-03 18:24:05 -050080 mountPath: /free5gc/script/ausf-run.sh
81 subPath: ausf-run.sh
Vijaya Rani Tiruveeduladd579db2022-02-03 16:57:10 +053082 - name: nf-config
Ajay Thakurb0028b62022-02-04 17:47:29 +000083 mountPath: /free5gc/config
badhri854c028b32021-11-03 18:24:05 -050084 {{- if .Values.config.coreDump.enabled }}
85 - name: coredump
86 mountPath: /tmp/coredump
87 {{- end }}
88 volumes:
badhri854c028b32021-11-03 18:24:05 -050089 - name: run-script
90 configMap:
91 name: ausf
92 defaultMode: 493
93 - name: nf-config
94 configMap:
95 name: ausf
96 defaultMode: 493
97 {{- if .Values.config.coreDump.enabled }}
98 - name: host-rootfs
99 hostPath:
100 path: /
101 - name: coredump
102 hostPath:
103 path: {{ .Values.config.coreDump.path }}
104 {{- end }}
105{{- end }}