blob: 0019d468f6bfcff1a8418c9a4dd21a825b0e7331 [file] [log] [blame]
Badhrinath987e1d82020-11-20 13:23:58 -06001{{/*
2# Copyright 2020-present Open Networking Foundation
3
4# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
5*/}}
6
7{{- if .Values.config.udr.deploy }}
8{{ tuple "udr" . | include "5g-control-plane.service_account" }}
9---
10apiVersion: apps/v1
Hyunsun Moon6a651482021-02-26 01:46:44 -080011kind: Deployment
Badhrinath987e1d82020-11-20 13:23:58 -060012metadata:
13 name: udr
14 labels:
15{{ tuple "udr" . | include "5g-control-plane.metadata_labels" | indent 4 }}
16spec:
17 replicas: 1
Hyunsun Moon6a651482021-02-26 01:46:44 -080018 #serviceName: udr-headless
Badhrinath987e1d82020-11-20 13:23:58 -060019 selector:
20 matchLabels:
21{{ tuple "udr" . | include "5g-control-plane.metadata_labels" | indent 6 }}
22 template:
23 metadata:
24 labels:
25{{ tuple "udr" . | include "5g-control-plane.metadata_labels" | indent 8 }}
26 {{- with .Values.config.udr.podAnnotations }}
27 annotations:
28 {{- toYaml . | nindent 8 }}
29 {{- end }}
30 spec:
Badhrinath987e1d82020-11-20 13:23:58 -060031 serviceAccountName: udr
Hyunsun Moon6a651482021-02-26 01:46:44 -080032 {{- if hasKey .Values.images "pullSecrets" }}
Badhrinath987e1d82020-11-20 13:23:58 -060033 imagePullSecrets:
Hyunsun Moon6a651482021-02-26 01:46:44 -080034{{ toYaml .Values.images.pullSecrets | indent 8 }}
Badhrinath987e1d82020-11-20 13:23:58 -060035 {{- end }}
36 initContainers:
Hyunsun Moon6a651482021-02-26 01:46:44 -080037 - name: wait-udr-module
Badhrinath987e1d82020-11-20 13:23:58 -060038 image: {{ .Values.images.tags.init | quote }}
39 imagePullPolicy: {{ .Values.images.pullPolicy }}
Hyunsun Moon6a651482021-02-26 01:46:44 -080040 command: ['sh', '-c', 'until nslookup udr; do echo waiting for udr; sleep 4; done;']
Badhrinath987e1d82020-11-20 13:23:58 -060041 {{- if .Values.config.coreDump.enabled }}
42{{ tuple "udr" . | include "5g-control-plane.coredump_init" | indent 6 }}
43 {{- end }}
44 containers:
45 - name: udr
46 image: {{ .Values.images.tags.udr }}
47 imagePullPolicy: {{ .Values.images.pullPolicy }}
48 {{- if .Values.config.coreDump.enabled }}
49 securityContext:
50 runAsUser: 0
51 {{- end }}
52 stdin: true
53 tty: true
Hyunsun Moon6a651482021-02-26 01:46:44 -080054 command: ["/free5gc/script/udr-run.sh"]
Badhrinath987e1d82020-11-20 13:23:58 -060055 env:
56 - name: POD_IP
57 valueFrom:
58 fieldRef:
59 fieldPath: status.podIP
60 {{- if .Values.resources.enabled }}
61 resources:
62{{ toYaml .Values.resources.udr | indent 10 }}
63 {{- end }}
64 volumeMounts:
Hyunsun Moon6a651482021-02-26 01:46:44 -080065 - name: run-script
66 mountPath: /free5gc/script/udr-run.sh
Badhrinath987e1d82020-11-20 13:23:58 -060067 subPath: udr-run.sh
Hyunsun Moon6a651482021-02-26 01:46:44 -080068 - name: config-dir
Badhrinath987e1d82020-11-20 13:23:58 -060069 mountPath: /free5gc/config
Hyunsun Moon6a651482021-02-26 01:46:44 -080070 - name: common-config
Vijaya4ee3e3d2021-05-15 15:24:36 +053071 mountPath: /free5gc/common
Hyunsun Moon6a651482021-02-26 01:46:44 -080072 - name: nf-config
Vijaya4ee3e3d2021-05-15 15:24:36 +053073 mountPath: /free5gc/config
Hyunsun Moon6a651482021-02-26 01:46:44 -080074 subPath: udrcfg.conf
Badhrinath987e1d82020-11-20 13:23:58 -060075 {{- if .Values.config.coreDump.enabled }}
76 - name: coredump
77 mountPath: /tmp/coredump
78 {{- end }}
79 volumes:
Hyunsun Moon6a651482021-02-26 01:46:44 -080080 - name: run-script
Badhrinath987e1d82020-11-20 13:23:58 -060081 configMap:
82 name: udr
83 defaultMode: 493
Hyunsun Moon6a651482021-02-26 01:46:44 -080084 - name: common-config
85 configMap:
86 name: common
87 defaultMode: 493
88 - name: nf-config
Badhrinath987e1d82020-11-20 13:23:58 -060089 configMap:
90 name: udr
Hyunsun Moon6a651482021-02-26 01:46:44 -080091 defaultMode: 493
92 - name: config-dir
93 emptyDir: {}
Badhrinath987e1d82020-11-20 13:23:58 -060094 {{- if .Values.config.coreDump.enabled }}
95 - name: host-rootfs
96 hostPath:
97 path: /
98 - name: coredump
99 hostPath:
100 path: {{ .Values.config.coreDump.path }}
101 {{- end }}
102{{- end }}