blob: 35ff8fe0d70fa644b814a248c9c9f1728ce8998f [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 "lbAgentReadinessProbeTemplate" }}
16exec:
17 command:
18 - bash
19 - -c
20 - 'brctl show'
21{{- end }}
22
23{{- define "neutron.lb_agent.daemonset" }}
24{{- $daemonset := index . 0 }}
25{{- $configMapName := index . 1 }}
26{{- $serviceAccountName := index . 2 }}
27{{- $envAll := index . 3 }}
28{{- with $envAll }}
29
30{{- $mounts_neutron_lb_agent := .Values.pod.mounts.neutron_lb_agent.neutron_lb_agent }}
31{{- $mounts_neutron_lb_agent_init := .Values.pod.mounts.neutron_lb_agent.init_container }}
32
33---
34apiVersion: apps/v1
35kind: DaemonSet
36metadata:
37 name: neutron-lb-agent
38 annotations:
39 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
40 labels:
41{{ tuple $envAll "neutron" "neutron-lb-agent" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
42spec:
43 selector:
44 matchLabels:
45{{ tuple $envAll "neutron" "neutron-lb-agent" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
46{{ tuple $envAll "lb_agent" | include "helm-toolkit.snippets.kubernetes_upgrades_daemonset" | indent 2 }}
47 template:
48 metadata:
49 labels:
50{{ tuple $envAll "neutron" "neutron-lb-agent" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
51 annotations:
52{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
53 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
54 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
Oleksandr K.10a2db72025-01-07 23:11:24 -080055{{ tuple "neutron_lb_agent" . | include "helm-toolkit.snippets.custom_pod_annotations" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050056 spec:
57{{ dict "envAll" $envAll "application" "neutron_lb_agent" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
58 serviceAccountName: {{ $serviceAccountName }}
59{{ if $envAll.Values.pod.tolerations.neutron.enabled }}
60{{ tuple $envAll "neutron" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
61{{ end }}
62 nodeSelector:
63 {{ .Values.labels.lb.node_selector_key }}: {{ .Values.labels.lb.node_selector_value }}
64 dnsPolicy: ClusterFirstWithHostNet
65 hostNetwork: true
66 {{- if or ( gt .Capabilities.KubeVersion.Major "1" ) ( ge .Capabilities.KubeVersion.Minor "10" ) }}
67 shareProcessNamespace: true
68 {{- else }}
69 hostPID: true
70 {{- end }}
71 initContainers:
72{{ tuple $envAll "pod_dependency" $mounts_neutron_lb_agent_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
73 - name: neutron-lb-agent-kernel-modules
74{{ tuple $envAll "neutron_linuxbridge_agent" | include "helm-toolkit.snippets.image" | indent 10 }}
75{{ dict "envAll" $envAll "application" "neutron_lb_agent" "container" "neutron_lb_agent_kernel_modules" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
76 command:
77 - /tmp/neutron-linuxbridge-agent-init-modules.sh
78 volumeMounts:
79 - name: neutron-bin
80 mountPath: /tmp/neutron-linuxbridge-agent-init-modules.sh
81 subPath: neutron-linuxbridge-agent-init-modules.sh
82 readOnly: true
83 - name: host-rootfs
84 mountPath: /mnt/host-rootfs
85 mountPropagation: HostToContainer
86 readOnly: true
87 - name: neutron-lb-agent-init
88{{ tuple $envAll "neutron_linuxbridge_agent" | include "helm-toolkit.snippets.image" | indent 10 }}
89{{ tuple $envAll $envAll.Values.pod.resources.agent.lb | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
90{{ dict "envAll" $envAll "application" "neutron_lb_agent" "container" "neutron_lb_agent_init" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
91 command:
92 - /tmp/neutron-linuxbridge-agent-init.sh
93 volumeMounts:
94 - name: pod-tmp
95 mountPath: /tmp
96 - name: neutron-bin
97 mountPath: /tmp/neutron-linuxbridge-agent-init.sh
98 subPath: neutron-linuxbridge-agent-init.sh
99 readOnly: true
100 - name: pod-shared
101 mountPath: /tmp/pod-shared
102 - name: neutron-etc
103 mountPath: /etc/neutron/neutron.conf
104 subPath: neutron.conf
105 readOnly: true
106 - name: neutron-etc
107 mountPath: /etc/neutron/plugins/ml2/ml2_conf.ini
108 subPath: ml2_conf.ini
109 readOnly: true
110 - name: neutron-etc
111 mountPath: /etc/neutron/plugins/ml2/linuxbridge_agent.ini
112 subPath: linuxbridge_agent.ini
113 readOnly: true
114 - name: neutron-etc
115 # NOTE (Portdirect): We mount here to override Kollas
116 # custom sudoers file when using Kolla images, this
117 # location will also work fine for other images.
118 mountPath: /etc/sudoers.d/kolla_neutron_sudoers
119 subPath: neutron_sudoers
120 readOnly: true
121 - name: neutron-etc
122 mountPath: /tmp/auto_bridge_add
123 subPath: auto_bridge_add
124 readOnly: true
125 - name: neutron-etc
126 mountPath: /etc/neutron/rootwrap.conf
127 subPath: rootwrap.conf
128 readOnly: true
129 {{- range $key, $value := $envAll.Values.conf.rootwrap_filters }}
130 {{- if ( has "lb_agent" $value.pods ) }}
131 {{- $filePrefix := replace "_" "-" $key }}
132 {{- $rootwrapFile := printf "/etc/neutron/rootwrap.d/%s.filters" $filePrefix }}
133 - name: neutron-etc
134 mountPath: {{ $rootwrapFile }}
135 subPath: {{ base $rootwrapFile }}
136 readOnly: true
137 {{- end }}
138 {{- end }}
139 - name: run
140 mountPath: /run
141{{ if $mounts_neutron_lb_agent.volumeMounts }}{{ toYaml $mounts_neutron_lb_agent.volumeMounts | indent 12 }}{{ end }}
142 containers:
143 - name: neutron-lb-agent
144{{ tuple $envAll "neutron_linuxbridge_agent" | include "helm-toolkit.snippets.image" | indent 10 }}
145{{ tuple $envAll $envAll.Values.pod.resources.agent.lb | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
146{{ dict "envAll" $envAll "application" "neutron_lb_agent" "container" "neutron_lb_agent" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
147{{ dict "envAll" $envAll "component" "lb_agent" "container" "lb_agent" "type" "readiness" "probeTemplate" (include "lbAgentReadinessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
148 command:
149 - /tmp/neutron-linuxbridge-agent.sh
150 volumeMounts:
151 - name: pod-tmp
152 mountPath: /tmp
153 - name: pod-var-neutron
154 mountPath: {{ .Values.conf.neutron.DEFAULT.state_path }}
155 - name: neutron-bin
156 mountPath: /tmp/neutron-linuxbridge-agent.sh
157 subPath: neutron-linuxbridge-agent.sh
158 readOnly: true
159 - name: pod-shared
160 mountPath: /tmp/pod-shared
161 - name: neutron-etc
162 mountPath: /etc/neutron/neutron.conf
163 subPath: neutron.conf
164 readOnly: true
165 {{- if .Values.conf.neutron.DEFAULT.log_config_append }}
166 - name: neutron-etc
167 mountPath: {{ .Values.conf.neutron.DEFAULT.log_config_append }}
168 subPath: {{ base .Values.conf.neutron.DEFAULT.log_config_append }}
169 readOnly: true
170 {{- end }}
171 - name: neutron-etc
172 mountPath: /etc/neutron/plugins/ml2/ml2_conf.ini
173 subPath: ml2_conf.ini
174 readOnly: true
175 - name: neutron-etc
176 mountPath: /etc/neutron/plugins/ml2/linuxbridge_agent.ini
177 subPath: linuxbridge_agent.ini
178 readOnly: true
179 - name: neutron-etc
180 # NOTE (Portdirect): We mount here to override Kollas
181 # custom sudoers file when using Kolla images, this
182 # location will also work fine for other images.
183 mountPath: /etc/sudoers.d/kolla_neutron_sudoers
184 subPath: neutron_sudoers
185 readOnly: true
186 - name: neutron-etc
187 mountPath: /etc/neutron/rootwrap.conf
188 subPath: rootwrap.conf
189 readOnly: true
190 {{- range $key, $value := $envAll.Values.conf.rootwrap_filters }}
191 {{- if ( has "lb_agent" $value.pods ) }}
192 {{- $filePrefix := replace "_" "-" $key }}
193 {{- $rootwrapFile := printf "/etc/neutron/rootwrap.d/%s.filters" $filePrefix }}
194 - name: neutron-etc
195 mountPath: {{ $rootwrapFile }}
196 subPath: {{ base $rootwrapFile }}
197 readOnly: true
198 {{- end }}
199 {{- end }}
200 - name: run
201 mountPath: /run
202{{- 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 }}
203{{ if $mounts_neutron_lb_agent.volumeMounts }}{{ toYaml $mounts_neutron_lb_agent.volumeMounts | indent 12 }}{{ end }}
204 volumes:
205 - name: pod-tmp
206 emptyDir: {}
207 - name: pod-var-neutron
208 emptyDir: {}
209 - name: pod-shared
210 emptyDir: {}
211 - name: neutron-bin
212 configMap:
213 name: neutron-bin
214 defaultMode: 0555
215 - name: neutron-etc
216 secret:
217 secretName: {{ $configMapName }}
218 defaultMode: 0444
219 - name: run
220 hostPath:
221 path: /run
222 - name: host-rootfs
223 hostPath:
224 path: /
225{{- 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 }}
226{{ if $mounts_neutron_lb_agent.volumes }}{{ toYaml $mounts_neutron_lb_agent.volumes | indent 8 }}{{ end }}
227{{- end }}
228{{- end }}
229
230{{- if and .Values.manifests.daemonset_lb_agent ( has "linuxbridge" .Values.network.backend ) }}
231{{- $envAll := . }}
232{{- $daemonset := "lb-agent" }}
233{{- $configMapName := "neutron-etc" }}
234{{- $serviceAccountName := "neutron-lb-agent" }}
235{{- $dependencyOpts := dict "envAll" $envAll "dependencyMixinParam" $envAll.Values.network.backend "dependencyKey" "lb_agent" -}}
236{{- $_ := include "helm-toolkit.utils.dependency_resolver" $dependencyOpts | toString | fromYaml }}
237{{ tuple $envAll "pod_dependency" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
238{{- $daemonset_yaml := list $daemonset $configMapName $serviceAccountName . | include "neutron.lb_agent.daemonset" | toString | fromYaml }}
239{{- $configmap_yaml := "neutron.configmap.etc" }}
240{{- list $daemonset $daemonset_yaml $configmap_yaml $configMapName . | include "helm-toolkit.utils.daemonset_overrides" }}
241{{- end }}