blob: 464b3c3c7e43ea8fbfb0fe30dff518194115f2be [file] [log] [blame]
Mohammed Naserf3f59a72023-01-15 21:02:04 -05001{{/*
2Licensed under the Apache License, Version 2.0 (the "License");
3you may not use this file except in compliance with the License.
4You may obtain a copy of the License at
5
6 http://www.apache.org/licenses/LICENSE-2.0
7
8Unless required by applicable law or agreed to in writing, software
9distributed under the License is distributed on an "AS IS" BASIS,
10WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11See the License for the specific language governing permissions and
12limitations under the License.
13*/}}
14
15{{- define "serverReadinessProbeTemplate" }}
16{{- if .Values.manifests.certificates }}
17exec:
18 command:
19 - python
20 - -c
21 - "import requests; requests.get('http://127.0.0.1:{{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}')"
22initialDelaySeconds: 30
23{{- else }}
24httpGet:
25 scheme: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_scheme_lookup" | upper }}
26 path: /
27 port: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
28{{- end }}
29{{- end }}
30{{- define "serverLivenessProbeTemplate" }}
31{{- if .Values.manifests.certificates }}
32exec:
33 command:
34 - python
35 - -c
36 - "import requests; requests.get('http://127.0.0.1:{{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}')"
37initialDelaySeconds: 30
38{{- else }}
39httpGet:
40 scheme: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_scheme_lookup" | upper }}
41 path: /
42 port: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
43{{- end }}
44{{- end }}
45
46{{- if .Values.manifests.deployment_server }}
47{{- $envAll := . }}
48
49{{- $dependencyOpts := dict "envAll" $envAll "dependencyMixinParam" $envAll.Values.network.backend "dependencyKey" "server" -}}
50{{- $_ := include "helm-toolkit.utils.dependency_resolver" $dependencyOpts | toString | fromYaml }}
51
52{{- $mounts_neutron_server := .Values.pod.mounts.neutron_server.neutron_server }}
53{{- $mounts_neutron_server_init := .Values.pod.mounts.neutron_server.init_container }}
54
55{{- $serviceAccountName := "neutron-server" }}
56{{ tuple $envAll "pod_dependency" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
57---
58apiVersion: apps/v1
59kind: Deployment
60metadata:
61 name: neutron-server
62 annotations:
63 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
64 labels:
65{{ tuple $envAll "neutron" "server" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
66spec:
67 replicas: {{ .Values.pod.replicas.server }}
68 selector:
69 matchLabels:
70{{ tuple $envAll "neutron" "server" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
71{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
72 template:
73 metadata:
74 labels:
75{{ tuple $envAll "neutron" "server" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
76 annotations:
77{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
78 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
79 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
Rico Lin0e153482024-05-03 03:29:14 +080080{{ tuple "neutron_server" . | include "helm-toolkit.snippets.custom_pod_annotations" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050081{{ dict "envAll" $envAll "podName" "neutron-server" "containerNames" (list "neutron-server" "init" "nginx") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }}
82 spec:
83{{ dict "envAll" $envAll "application" "neutron_server" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
Dong Mae5bd5a32025-02-11 11:03:48 +000084{{ with .Values.pod.priorityClassName.neutron_server }}
85 priorityClassName: {{ . }}
86{{ end }}
87{{ with .Values.pod.runtimeClassName.neutron_server }}
88 runtimeClassName: {{ . }}
89{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050090 serviceAccountName: {{ $serviceAccountName }}
91 affinity:
92{{ tuple $envAll "neutron" "server" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
93 nodeSelector:
94 {{ .Values.labels.server.node_selector_key }}: {{ .Values.labels.server.node_selector_value }}
95{{ if $envAll.Values.pod.tolerations.neutron.enabled }}
96{{ tuple $envAll "neutron" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
97{{ end }}
98 terminationGracePeriodSeconds: {{ .Values.pod.lifecycle.termination_grace_period.server.timeout | default "30" }}
99 initContainers:
100{{ tuple $envAll "pod_dependency" $mounts_neutron_server_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +0200101 {{- if ( has "ovn" .Values.network.backend ) }}
102 - name: ovn-neutron-init
103{{ tuple $envAll "neutron_server" | include "helm-toolkit.snippets.image" | indent 10 }}
104 command:
Mohammed Naser593ec012023-07-23 09:20:05 +0000105 - /tmp/neutron-ovn-init.sh
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +0200106 volumeMounts:
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +0200107 - name: pod-shared
108 mountPath: /tmp/pod-shared
109 - name: neutron-bin
Mohammed Naser593ec012023-07-23 09:20:05 +0000110 mountPath: /tmp/neutron-ovn-init.sh
111 subPath: neutron-ovn-init.sh
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +0200112 readOnly: true
113 {{- end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500114 {{- if ( has "tungstenfabric" .Values.network.backend ) }}
115 - name: tungstenfabric-neutron-init
116 image: {{ .Values.images.tags.tf_neutron_init }}
117 imagePullPolicy: {{ .Values.images.pull_policy }}
118{{ tuple $envAll $envAll.Values.pod.resources.server | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
119 securityContext:
120 runAsUser: {{ .Values.pod.security_context.neutron_server.pod.runAsUser }}
121 env:
122 - name: OPENSTACK_VERSION
123 value: "{{ .Values.conf.openstack_version }}"
124 volumeMounts:
125 - name: neutron-plugin-shared
126 mountPath: /opt/plugin
127 {{- end }}
128 containers:
129 {{- if $envAll.Values.manifests.certificates }}
130 - name: nginx
131{{ tuple $envAll "nginx" | include "helm-toolkit.snippets.image" | indent 10 }}
132{{ tuple $envAll $envAll.Values.pod.resources.nginx | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
133{{ dict "envAll" $envAll "application" "neutron_server" "container" "nginx" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
134 ports:
135 - name: q-api
136 containerPort: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
137 env:
138 - name: PORT
139 value: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" | quote }}
140 - name: POD_IP
141 valueFrom:
142 fieldRef:
143 fieldPath: status.podIP
144 - name: SHORTNAME
145 value: {{ tuple "network" "internal" . | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" | quote }}
146 readinessProbe:
147 httpGet:
148 scheme: HTTPS
149 path: /
150 port: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
151 command:
152 - /tmp/nginx.sh
153 - start
154 lifecycle:
155 preStop:
156 exec:
157 command:
158 - /tmp/nginx.sh
159 - stop
160 volumeMounts:
161 - name: pod-tmp
162 mountPath: /tmp
163 - name: neutron-bin
164 mountPath: /tmp/nginx.sh
165 subPath: nginx.sh
166 readOnly: true
167 - name: neutron-etc
168 mountPath: /etc/nginx/nginx.conf
169 subPath: nginx.conf
170 readOnly: true
171{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.network.server.internal "path" "/etc/nginx/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
172 {{- end }}
173 - name: neutron-server
174{{ tuple $envAll "neutron_server" | include "helm-toolkit.snippets.image" | indent 10 }}
175{{ tuple $envAll $envAll.Values.pod.resources.server | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
176{{ dict "envAll" $envAll "application" "neutron_server" "container" "neutron_server" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
177{{ dict "envAll" $envAll "component" "server" "container" "server" "type" "readiness" "probeTemplate" (include "serverReadinessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
178{{ dict "envAll" $envAll "component" "server" "container" "server" "type" "liveness" "probeTemplate" (include "serverLivenessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
179 command:
180 - /tmp/neutron-server.sh
181 - start
182{{- if or .Values.manifests.certificates .Values.tls.identity }}
183 env:
184 - name: REQUESTS_CA_BUNDLE
185 value: "/etc/neutron/certs/ca.crt"
186{{- end }}
187 lifecycle:
188 preStop:
189 exec:
190 command:
191 - /tmp/neutron-server.sh
192 - stop
193 ports:
194 - name: q-api
195 containerPort: {{ tuple "network" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
196 volumeMounts:
197 - name: pod-tmp
198 mountPath: /tmp
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +0200199 - name: pod-shared
200 mountPath: /tmp/pod-shared
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500201 - name: pod-var-neutron
202 mountPath: {{ .Values.conf.neutron.DEFAULT.state_path }}
203 - name: neutron-bin
204 mountPath: /tmp/neutron-server.sh
205 subPath: neutron-server.sh
206 readOnly: true
207 - name: neutron-etc
208 mountPath: /etc/neutron/neutron.conf
209 subPath: neutron.conf
210 readOnly: true
Rico Lin0e153482024-05-03 03:29:14 +0800211 - name: neutron-etc
212 mountPath: /etc/neutron/neutron-api-uwsgi.ini
213 subPath: neutron-api-uwsgi.ini
214 readOnly: true
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500215 {{- if .Values.conf.neutron.DEFAULT.log_config_append }}
216 - name: neutron-etc
217 mountPath: {{ .Values.conf.neutron.DEFAULT.log_config_append }}
218 subPath: {{ base .Values.conf.neutron.DEFAULT.log_config_append }}
219 readOnly: true
220 {{- end }}
221 - name: neutron-etc
222 mountPath: /etc/neutron/api_audit_map.conf
223 subPath: api_audit_map.conf
224 readOnly: true
225 {{- if( has "tungstenfabric" .Values.network.backend ) }}
226 - name: neutron-etc
227 mountPath: /etc/neutron/plugins/tungstenfabric/tf_plugin.ini
228 subPath: tf_plugin.ini
229 readOnly: true
230 - name: neutron-etc
231 mountPath: /etc/contrail/vnc_api_lib.ini
232 subPath: vnc_api_lib.ini
233 readOnly: true
234 - name: neutron-plugin-shared
235 mountPath: /opt/plugin
236 - name: neutron-bin
237 mountPath: /usr/local/lib/python2.7/site-packages/tf-plugin.pth
238 subPath: tf-plugin.pth
239 readOnly: true
240 - name: neutron-bin
241 mountPath: /var/lib/openstack/lib/python2.7/site-packages/tf-plugin.pth
242 subPath: tf-plugin.pth
243 readOnly: true
244 - name: neutron-bin
245 mountPath: /var/lib/openstack/lib/python3.6/site-packages/tf-plugin.pth
246 subPath: tf-plugin.pth
247 readOnly: true
248 {{- else }}
249 - name: neutron-etc
250 mountPath: /etc/neutron/plugins/ml2/ml2_conf.ini
251 subPath: ml2_conf.ini
252 readOnly: true
253 {{- end }}
254 {{ if ( has "sriov" .Values.network.backend ) }}
255 - name: neutron-etc
256 mountPath: /etc/neutron/plugins/ml2/sriov_agent.ini
257 subPath: sriov_agent.ini
258 readOnly: true
259 {{ end }}
260 {{- if .Values.conf.plugins.taas.taas.enabled }}
261 - name: neutron-etc
262 mountPath: /etc/neutron/taas_plugin.ini
263 subPath: taas_plugin.ini
264 readOnly: true
265 {{ end }}
266 {{- if .Values.conf.plugins.l2gateway }}
267 - name: neutron-etc
268 mountPath: /etc/neutron/l2gw_plugin.ini
269 subPath: l2gw_plugin.ini
270 readOnly: true
271 {{ end }}
272 - name: neutron-etc
273 mountPath: /etc/neutron/api-paste.ini
274 subPath: api-paste.ini
275 readOnly: true
276 - name: neutron-etc
277 mountPath: /etc/neutron/policy.yaml
278 subPath: policy.yaml
279 readOnly: true
280{{- dict "enabled" .Values.manifests.certificates "name" .Values.endpoints.oslo_db.auth.admin.secret.tls.internal "path" "/etc/mysql/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
281{{- dict "enabled" (or .Values.manifests.certificates .Values.tls.identity) "name" .Values.secrets.tls.network.server.internal "path" "/etc/neutron/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
282{{- dict "enabled" $envAll.Values.manifests.certificates "name" $envAll.Values.endpoints.oslo_messaging.auth.admin.secret.tls.internal "path" "/etc/rabbitmq/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
283{{ if $mounts_neutron_server.volumeMounts }}{{ toYaml $mounts_neutron_server.volumeMounts | indent 12 }}{{ end }}
Rico Lin71132432024-07-03 02:15:57 +0800284 {{- if .Values.pod.sidecars.neutron_policy_server }}
285 - name: neutron-policy-server
286{{ tuple $envAll "neutron_policy_server" | include "helm-toolkit.snippets.image" | indent 10 }}
287{{ tuple $envAll $envAll.Values.pod.resources.neutron_policy_server | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
288{{ dict "envAll" $envAll "application" "neutron_server" "container" "neutron_policy_server" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
289 command:
290 - /tmp/neutron-policy-server.sh
291 - start
292 ports:
293 - name: q-policy
294 containerPort: {{ tuple "network" "service" "policy_server" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
295 readinessProbe:
296 httpGet:
297 path: /health
298 port: {{ tuple "network" "service" "policy_server" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
299 volumeMounts:
300 - name: neutron-bin
301 mountPath: /tmp/neutron-policy-server.sh
302 subPath: neutron-policy-server.sh
303 readOnly: true
304 - name: neutron-etc
305 mountPath: /etc/neutron/neutron-policy-server-uwsgi.ini
306 subPath: neutron-policy-server-uwsgi.ini
307 readOnly: true
308 - name: neutron-etc
309 mountPath: /etc/neutron/neutron.conf
310 subPath: neutron.conf
311 readOnly: true
312 {{- if( has "tungstenfabric" .Values.network.backend ) }}
313 - name: neutron-etc
314 mountPath: /etc/neutron/plugins/tungstenfabric/tf_plugin.ini
315 subPath: tf_plugin.ini
316 readOnly: true
317 - name: neutron-etc
318 mountPath: /etc/contrail/vnc_api_lib.ini
319 subPath: vnc_api_lib.ini
320 readOnly: true
321 - name: neutron-plugin-shared
322 mountPath: /opt/plugin
323 - name: neutron-bin
324 mountPath: /usr/local/lib/python2.7/site-packages/tf-plugin.pth
325 subPath: tf-plugin.pth
326 readOnly: true
327 - name: neutron-bin
328 mountPath: /var/lib/openstack/lib/python2.7/site-packages/tf-plugin.pth
329 subPath: tf-plugin.pth
330 readOnly: true
331 - name: neutron-bin
332 mountPath: /var/lib/openstack/lib/python3.6/site-packages/tf-plugin.pth
333 subPath: tf-plugin.pth
334 readOnly: true
335 {{- else }}
336 - name: neutron-etc
337 mountPath: /etc/neutron/plugins/ml2/ml2_conf.ini
338 subPath: ml2_conf.ini
339 readOnly: true
340 {{- end }}
341 {{- end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500342 volumes:
343 - name: pod-tmp
344 emptyDir: {}
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +0200345 - name: pod-shared
346 emptyDir: {}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500347 {{- if .Values.manifests.certificates }}
348 - name: wsgi-neutron
349 emptyDir: {}
350 {{- end }}
351 - name: pod-var-neutron
352 emptyDir: {}
353 - name: neutron-bin
354 configMap:
355 name: neutron-bin
356 defaultMode: 0555
357 - name: neutron-etc
358 secret:
359 secretName: neutron-etc
360 defaultMode: 0444
361 {{- if ( has "tungstenfabric" .Values.network.backend ) }}
362 - name: neutron-plugin-shared
363 emptyDir: {}
364 {{- end }}
365{{- dict "enabled" .Values.manifests.certificates "name" .Values.endpoints.oslo_db.auth.admin.secret.tls.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
366{{- dict "enabled" (or .Values.manifests.certificates .Values.tls.identity) "name" .Values.secrets.tls.network.server.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
367{{- dict "enabled" $envAll.Values.manifests.certificates "name" $envAll.Values.endpoints.oslo_messaging.auth.admin.secret.tls.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
368{{ if $mounts_neutron_server.volumes }}{{ toYaml $mounts_neutron_server.volumes | indent 8 }}{{ end }}
369{{- end }}