blob: 7d9d9438d8879bb55b8eaafa1ba9e77a6c25ba5f [file] [log] [blame]
Jeremy Ronquillo223db002020-06-05 10:28:22 -07001{{/*
Jeremy Ronquilloec2d3e42020-06-05 11:33:39 -07002# Copyright 2019-present Open Networking Foundation
Jeremy Ronquillo223db002020-06-05 10:28:22 -07003
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07004# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
Jeremy Ronquillo223db002020-06-05 10:28:22 -07005*/}}
6
Hyunsun Moon83ff7352020-07-09 11:03:52 -07007{{- if .Values.config.spgwc.deploy }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -07008{{ tuple "spgwc" . | include "omec-control-plane.service_account" }}
9---
10apiVersion: apps/v1
11kind: StatefulSet
12metadata:
13 name: spgwc
14 labels:
15{{ tuple "spgwc" . | include "omec-control-plane.metadata_labels" | indent 4 }}
16spec:
17 replicas: 1
18 serviceName: spgwc-headless
19 selector:
20 matchLabels:
21{{ tuple "spgwc" . | include "omec-control-plane.metadata_labels" | indent 6 }}
22 template:
23 metadata:
24 labels:
25{{ tuple "spgwc" . | include "omec-control-plane.metadata_labels" | indent 8 }}
Andy Bavierba196552020-09-17 13:58:04 -070026 {{- with .Values.config.spgwc.podAnnotations }}
27 annotations:
28 {{- toYaml . | nindent 8 }}
29 {{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070030 spec:
31 {{- if .Values.nodeSelectors.enabled }}
32 nodeSelector:
33 {{ .Values.nodeSelectors.spgwc.label }}: {{ .Values.nodeSelectors.spgwc.value }}
34 {{- end }}
35 serviceAccountName: spgwc
Hyunsun Moond9a09e82021-03-17 12:16:53 -070036 {{- if hasKey .Values.images "pullSecrets" }}
Hyunsun Moon8da17882020-10-14 21:28:44 -050037 imagePullSecrets:
Hyunsun Moond9a09e82021-03-17 12:16:53 -070038{{ toYaml .Values.images.pullSecrets | indent 8 }}
Hyunsun Moon8da17882020-10-14 21:28:44 -050039 {{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070040 {{- if .Values.config.coreDump.enabled }}
Hyunsun Moon7f03a772020-09-27 23:23:50 -050041 initContainers:
Jeremy Ronquillo223db002020-06-05 10:28:22 -070042{{ tuple "spgwc" . | include "omec-control-plane.coredump_init" | indent 6 }}
43 {{- end }}
44 containers:
45 - name: spgwc
46 image: {{ .Values.images.tags.spgwc }}
47 imagePullPolicy: {{ .Values.images.pullPolicy }}
48 {{- if .Values.config.coreDump.enabled }}
49 securityContext:
50 privileged: true
51 runAsUser: 0
52 {{- end }}
53 stdin: true
54 tty: true
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -050055 command: ["bash", "-xc"]
56 args:
57 - /opt/cp/scripts/spgwc-run.sh ngic_controlplane
Ajay Lotan Thakur97278fa2020-09-21 17:31:51 -050058 livenessProbe:
59 httpGet:
60 path: /liveness
Hyunsun Moon7f03a772020-09-27 23:23:50 -050061 port: {{ .Values.config.spgwc.rest.port }}
Ajay Lotan Thakur97278fa2020-09-21 17:31:51 -050062 initialDelaySeconds: 10
63 periodSeconds: 3
64 readinessProbe:
65 httpGet:
66 path: /readiness
Hyunsun Moon7f03a772020-09-27 23:23:50 -050067 port: {{ .Values.config.spgwc.rest.port }}
Ajay Lotan Thakur97278fa2020-09-21 17:31:51 -050068 initialDelaySeconds: 10
69 periodSeconds: 3
70{{- if semverCompare ">=1.16-0" .Capabilities.KubeVersion.GitVersion }}
71 startupProbe:
72 #looks like available only in 1.16 K8s version and above
73 httpGet:
74 path: /startup
Hyunsun Moon7f03a772020-09-27 23:23:50 -050075 port: {{ .Values.config.spgwc.rest.port }}
Ajay Lotan Thakur97278fa2020-09-21 17:31:51 -050076 failureThreshold: 30
77 periodSeconds: 10
78{{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070079 env:
80 - name: MEM_LIMIT
81 valueFrom:
82 resourceFieldRef:
83 containerName: spgwc
84 resource: limits.memory
85 divisor: 1Mi
86 - name: POD_IP
87 valueFrom:
88 fieldRef:
89 fieldPath: status.podIP
Ajay Lotan Thakur71f26c52021-08-19 17:04:02 -050090 {{- if .Values.config.managedByConfigPod.enabled }}
91 - name: MANAGED_BY_CONFIG_POD
92 value: "true"
93 {{- end }}
Andy Bavier1a2d8f52021-06-04 16:04:17 -070094 {{- if .Values.config.spgwc.managedByRoc.enabled }}
Andy Bavier6778fff2021-05-28 15:35:07 -070095 - name: DISABLE_CONFIG_WATCHER # If the variable has a value then changes
96 value: "true" # to subscriber_mapping.json are ignored
97 {{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070098 {{- if .Values.resources.enabled }}
99 resources:
100{{ toYaml .Values.resources.spgwc | indent 10 }}
101 {{- end }}
102 volumeMounts:
Hyunsun Moon1fc24472021-03-14 19:10:11 -0500103 - name: scripts
104 mountPath: /opt/cp/scripts
105 - name: configs
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700106 mountPath: /etc/cp/config
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500107 - name: shared-app
108 mountPath: /tmp
109 {{- if .Values.config.coreDump.enabled }}
110 - name: coredump
111 mountPath: /tmp/coredump
112 {{- end }}
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500113 - name: gx-app
114 image: {{ .Values.images.tags.spgwc }}
115 imagePullPolicy: {{ .Values.images.pullPolicy }}
116 {{- if .Values.config.coreDump.enabled }}
117 securityContext:
118 privileged: true
119 runAsUser: 0
120 {{- end }}
121 stdin: true
122 tty: true
123 command: ["bash", "-xc"]
124 args:
125 - /opt/cp/scripts/spgwc-run.sh gx-app
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500126 {{- if .Values.resources.enabled }}
127 resources:
128{{ toYaml .Values.resources.spgwc | indent 10 }}
129 {{- end }}
130 volumeMounts:
Hyunsun Moon1fc24472021-03-14 19:10:11 -0500131 - name: scripts
132 mountPath: /opt/cp/scripts
133 - name: configs
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500134 mountPath: /etc/cp/config
135 - name: shared-app
136 mountPath: /tmp
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700137 {{- if .Values.config.coreDump.enabled }}
138 - name: coredump
139 mountPath: /tmp/coredump
140 {{- end }}
Andy Bavier1a2d8f52021-06-04 16:04:17 -0700141 {{- if .Values.config.spgwc.managedByRoc.enabled }}
142 - name: init-sync
143 image: curlimages/curl:7.77.0
144 imagePullPolicy: IfNotPresent
145 stdin: true
146 tty: true
147 command: ["sh", "-c"]
148 args:
149 - /opt/cp/scripts/spgwc-init.sh
150 volumeMounts:
151 - name: scripts
152 mountPath: /opt/cp/scripts
153 volumes:
154 - name: scripts
155 configMap:
156 name: spgwc-scripts
157 defaultMode: 493
158 {{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700159 volumes:
Hyunsun Moon1fc24472021-03-14 19:10:11 -0500160 - name: scripts
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700161 configMap:
Hyunsun Moon1fc24472021-03-14 19:10:11 -0500162 name: spgwc-scripts
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700163 defaultMode: 493
Hyunsun Moon1fc24472021-03-14 19:10:11 -0500164 - name: configs
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700165 configMap:
Hyunsun Moon1fc24472021-03-14 19:10:11 -0500166 name: spgwc-configs
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700167 defaultMode: 420
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500168 - name: shared-app
169 emptyDir: {}
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700170 - name: host-rootfs
171 hostPath:
172 path: /
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500173 {{- if .Values.config.coreDump.enabled }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700174 - name: coredump
175 hostPath:
176 path: {{ .Values.config.coreDump.path }}
177 {{- end }}
Hyunsun Moon83ff7352020-07-09 11:03:52 -0700178{{- end }}