blob: 50a7ddbfd04bd39ca69e6820fa553cded8b591ef [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 "novaConductorLivenessProbeTemplate" }}
16exec:
17 command:
18 - python
19 - /tmp/health-probe.py
20 - --config-file
21 - /etc/nova/nova.conf
22 - --service-queue-name
23 - conductor
24 - --liveness-probe
25{{- end }}
26
27{{- define "novaConductorReadinessProbeTemplate" }}
28exec:
29 command:
30 - python
31 - /tmp/health-probe.py
32 - --config-file
33 - /etc/nova/nova.conf
34 - --service-queue-name
35 - conductor
36{{- end }}
37
38{{- if .Values.manifests.deployment_conductor }}
39{{- $envAll := . }}
40
41{{- $mounts_nova_conductor := .Values.pod.mounts.nova_conductor.nova_conductor }}
42{{- $mounts_nova_conductor_init := .Values.pod.mounts.nova_conductor.init_container }}
43
44{{- $serviceAccountName := "nova-conductor" }}
45{{ tuple $envAll "conductor" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
46---
47apiVersion: apps/v1
48kind: Deployment
49metadata:
50 name: nova-conductor
51 annotations:
52 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
53 labels:
54{{ tuple $envAll "nova" "conductor" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
55spec:
56 replicas: {{ .Values.pod.replicas.conductor }}
57 selector:
58 matchLabels:
59{{ tuple $envAll "nova" "conductor" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
60{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
61 template:
62 metadata:
63 labels:
64{{ tuple $envAll "nova" "conductor" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
65 annotations:
66{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
67 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
68 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
Oleksandr K.24c88fd2024-12-08 22:28:50 -080069{{ tuple "nova_conductor" . | include "helm-toolkit.snippets.custom_pod_annotations" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050070{{ dict "envAll" $envAll "podName" "nova-conductor" "containerNames" (list "nova-conductor" "init") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }}
71 spec:
Dong Mabb1ef1f2025-02-11 16:47:00 +000072{{ with .Values.pod.priorityClassName.nova_conductor }}
73 priorityClassName: {{ . }}
74{{ end }}
75{{ with .Values.pod.runtimeClassName.nova_conductor }}
76 runtimeClassName: {{ . }}
77{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050078 serviceAccountName: {{ $serviceAccountName }}
79{{ dict "envAll" $envAll "application" "nova" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
80 affinity:
81{{ tuple $envAll "nova" "conductor" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
82 nodeSelector:
83 {{ .Values.labels.conductor.node_selector_key }}: {{ .Values.labels.conductor.node_selector_value }}
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010084{{ if $envAll.Values.pod.tolerations.nova.enabled }}
85{{ tuple $envAll "nova" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
86{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050087 initContainers:
88{{ tuple $envAll "conductor" $mounts_nova_conductor_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
89 containers:
90 - name: nova-conductor
91{{ tuple $envAll "nova_conductor" | include "helm-toolkit.snippets.image" | indent 10 }}
92{{ tuple $envAll $envAll.Values.pod.resources.conductor | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
93{{ dict "envAll" $envAll "application" "nova" "container" "nova_conductor" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
94{{ dict "envAll" $envAll "component" "conductor" "container" "default" "type" "liveness" "probeTemplate" (include "novaConductorLivenessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
95{{ dict "envAll" $envAll "component" "conductor" "container" "default" "type" "readiness" "probeTemplate" (include "novaConductorReadinessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
96 env:
97 - name: RPC_PROBE_TIMEOUT
98 value: "{{ .Values.pod.probes.rpc_timeout }}"
99 - name: RPC_PROBE_RETRIES
100 value: "{{ .Values.pod.probes.rpc_retries }}"
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +0100101{{- if or .Values.manifests.certificates .Values.tls.identity }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500102 - name: REQUESTS_CA_BUNDLE
103 value: "/etc/nova/certs/ca.crt"
104{{- end }}
105 command:
106 - /tmp/nova-conductor.sh
107 volumeMounts:
108 - name: pod-tmp
109 mountPath: /tmp
110 - name: nova-bin
111 mountPath: /tmp/nova-conductor.sh
112 subPath: nova-conductor.sh
113 readOnly: true
114 - name: nova-bin
115 mountPath: /tmp/health-probe.py
116 subPath: health-probe.py
117 readOnly: true
118 - name: nova-etc
119 mountPath: /etc/nova/nova.conf
120 subPath: nova.conf
121 readOnly: true
122 {{- if .Values.conf.nova.DEFAULT.log_config_append }}
123 - name: nova-etc
124 mountPath: {{ .Values.conf.nova.DEFAULT.log_config_append }}
125 subPath: {{ base .Values.conf.nova.DEFAULT.log_config_append }}
126 readOnly: true
127 {{- end }}
128 - name: nova-etc
129 mountPath: /etc/nova/policy.yaml
130 subPath: policy.yaml
131 readOnly: true
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +0100132{{- dict "enabled" (or .Values.manifests.certificates .Values.tls.identity) "name" .Values.secrets.tls.compute.osapi.internal "path" "/etc/nova/certs" "certs" (tuple "ca.crt") | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500133{{- dict "enabled" $envAll.Values.manifests.certificates "name" $envAll.Values.endpoints.oslo_db.auth.admin.secret.tls.internal "path" "/etc/mysql/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
134{{- 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 }}
135{{ if $mounts_nova_conductor.volumeMounts }}{{ toYaml $mounts_nova_conductor.volumeMounts | indent 12 }}{{ end }}
136 volumes:
137 - name: pod-tmp
138 emptyDir: {}
139 - name: nova-bin
140 configMap:
141 name: nova-bin
142 defaultMode: 0555
143 - name: nova-etc
144 secret:
145 secretName: nova-etc
146 defaultMode: 0444
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +0100147{{- dict "enabled" (or .Values.manifests.certificates .Values.tls.identity) "name" .Values.secrets.tls.compute.osapi.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500148{{- dict "enabled" $envAll.Values.manifests.certificates "name" $envAll.Values.endpoints.oslo_db.auth.admin.secret.tls.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
149{{- 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 }}
150{{ if $mounts_nova_conductor.volumes }}{{ toYaml $mounts_nova_conductor.volumes | indent 8 }}{{ end }}
151{{- end }}