blob: 3a387de270a4b9dcf04cb1ff3842c0684cb80f1d [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 Moon8da17882020-10-14 21:28:44 -050036 {{- if .Values.images.credentials }}
37 imagePullSecrets:
38 - name: {{ .Release.Name }}.registry
39 {{- 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
90 {{- if .Values.resources.enabled }}
91 resources:
92{{ toYaml .Values.resources.spgwc | indent 10 }}
93 {{- end }}
94 volumeMounts:
95 - name: cp-script
96 mountPath: /opt/cp/scripts/spgwc-run.sh
97 subPath: spgwc-run.sh
98 - name: cp-config
99 mountPath: /etc/cp/config
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500100 - name: shared-app
101 mountPath: /tmp
102 {{- if .Values.config.coreDump.enabled }}
103 - name: coredump
104 mountPath: /tmp/coredump
105 {{- end }}
106
107 - name: gx-app
108 image: {{ .Values.images.tags.spgwc }}
109 imagePullPolicy: {{ .Values.images.pullPolicy }}
110 {{- if .Values.config.coreDump.enabled }}
111 securityContext:
112 privileged: true
113 runAsUser: 0
114 {{- end }}
115 stdin: true
116 tty: true
117 command: ["bash", "-xc"]
118 args:
119 - /opt/cp/scripts/spgwc-run.sh gx-app
120 env:
121 - name: MEM_LIMIT
122 valueFrom:
123 resourceFieldRef:
124 containerName: spgwc
125 resource: limits.memory
126 divisor: 1Mi
127 - name: POD_IP
128 valueFrom:
129 fieldRef:
130 fieldPath: status.podIP
131 {{- if .Values.resources.enabled }}
132 resources:
133{{ toYaml .Values.resources.spgwc | indent 10 }}
134 {{- end }}
135 volumeMounts:
136 - name: cp-script
137 mountPath: /opt/cp/scripts/spgwc-run.sh
138 subPath: spgwc-run.sh
139 - name: cp-config
140 mountPath: /etc/cp/config
141 - name: shared-app
142 mountPath: /tmp
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700143 {{- if .Values.config.coreDump.enabled }}
144 - name: coredump
145 mountPath: /tmp/coredump
146 {{- end }}
147 volumes:
148 - name: cp-script
149 configMap:
150 name: spgwc
151 defaultMode: 493
152 - name: cp-config
153 configMap:
154 name: spgwc
155 defaultMode: 420
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500156 - name: shared-app
157 emptyDir: {}
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700158 - name: host-rootfs
159 hostPath:
160 path: /
Ajay Lotan Thakurc3cd6192020-10-12 20:12:38 -0500161 {{- if .Values.config.coreDump.enabled }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -0700162 - name: coredump
163 hostPath:
164 path: {{ .Values.config.coreDump.path }}
165 {{- end }}
Hyunsun Moon83ff7352020-07-09 11:03:52 -0700166{{- end }}