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