blob: f4c1d8ba75d6e07c4b593252d9ec60a5b2074468 [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 "novaNovncproxyLivenessProbeTemplate" }}
16tcpSocket:
17 port: {{ tuple "compute_novnc_proxy" "internal" "novnc_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
18{{- end }}
19
20{{- define "novaNovncproxyReadinessProbeTemplate" }}
21tcpSocket:
22 port: {{ tuple "compute_novnc_proxy" "internal" "novnc_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
23{{- end }}
24
25{{- if and .Values.manifests.deployment_novncproxy ( eq .Values.console.console_kind "novnc" )}}
26{{- $envAll := . }}
27
28{{- $mounts_nova_novncproxy := .Values.pod.mounts.nova_novncproxy.nova_novncproxy }}
29{{- $mounts_nova_novncproxy_init := .Values.pod.mounts.nova_novncproxy.init_novncproxy }}
30
okozachenko1203ea639e72023-08-30 23:25:38 +100031{{- $vencrypt_enabled := (contains "vencrypt" .Values.conf.nova.vnc.auth_schemes) }}
32
Mohammed Naserf3f59a72023-01-15 21:02:04 -050033{{- $serviceAccountName := "nova-novncproxy" }}
34{{ tuple $envAll "novncproxy" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
35---
36apiVersion: apps/v1
37kind: Deployment
38metadata:
39 name: nova-novncproxy
40 annotations:
41 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
42 labels:
43{{ tuple $envAll "nova" "novnc-proxy" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
44spec:
45 replicas: {{ .Values.pod.replicas.novncproxy }}
46 selector:
47 matchLabels:
48{{ tuple $envAll "nova" "novnc-proxy" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
49{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
50 template:
51 metadata:
52 labels:
53{{ tuple $envAll "nova" "novnc-proxy" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
54 annotations:
55{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
56 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
57 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
vexxhost-bot502c9412025-01-08 03:45:26 -050058{{ tuple "nova_novncproxy" . | include "helm-toolkit.snippets.custom_pod_annotations" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050059{{ dict "envAll" $envAll "podName" "nova-novncproxy" "containerNames" (list "nova-novncproxy" "nova-novncproxy-init-assets" "nova-novncproxy-init" "init") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }}
60 spec:
61 serviceAccountName: {{ $serviceAccountName }}
62{{ dict "envAll" $envAll "application" "nova" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
63 affinity:
64{{ tuple $envAll "nova" "novnc-proxy" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
65 nodeSelector:
66 {{ .Values.labels.novncproxy.node_selector_key }}: {{ .Values.labels.novncproxy.node_selector_value }}
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010067{{ if $envAll.Values.pod.tolerations.nova.enabled }}
68{{ tuple $envAll "nova" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
69{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050070{{- if .Values.pod.useHostNetwork.novncproxy }}
71 hostNetwork: true
72 dnsPolicy: ClusterFirstWithHostNet
73{{- end }}
74 initContainers:
75{{ tuple $envAll "novncproxy" $mounts_nova_novncproxy_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
76 - name: nova-novncproxy-init
77{{ tuple $envAll "nova_novncproxy" | include "helm-toolkit.snippets.image" | indent 10 }}
78{{ tuple $envAll $envAll.Values.pod.resources.novncproxy | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
79{{ dict "envAll" $envAll "application" "nova" "container" "nova_novncproxy_init" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
80 command:
81 - /tmp/nova-console-proxy-init.sh
82 volumeMounts:
83 - name: pod-tmp
84 mountPath: /tmp
85 - name: nova-bin
86 mountPath: /tmp/nova-console-proxy-init.sh
87 subPath: nova-console-proxy-init.sh
88 readOnly: true
89 - name: nova-etc
90 mountPath: /etc/nova/nova.conf
91 subPath: nova.conf
92 readOnly: true
93 {{- if .Values.conf.nova.DEFAULT.log_config_append }}
94 - name: nova-etc
95 mountPath: {{ .Values.conf.nova.DEFAULT.log_config_append }}
96 subPath: {{ base .Values.conf.nova.DEFAULT.log_config_append }}
97 readOnly: true
98 {{- end }}
99 - name: pod-shared
100 mountPath: /tmp/pod-shared
101 - name: nova-novncproxy-init-assets
102{{ tuple $envAll "nova_novncproxy_assets" | include "helm-toolkit.snippets.image" | indent 10 }}
103{{ tuple $envAll $envAll.Values.pod.resources.novncproxy | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
104{{ dict "envAll" $envAll "application" "nova" "container" "nova_novncproxy_init_assests" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
105 command:
106 - /tmp/nova-console-proxy-init-assets.sh
107 volumeMounts:
108 - name: pod-tmp
109 mountPath: /tmp
110 - name: nova-bin
111 mountPath: /tmp/nova-console-proxy-init-assets.sh
112 subPath: nova-console-proxy-init-assets.sh
113 readOnly: true
114 - name: pod-usr-share-novnc
115 mountPath: /tmp/usr/share/novnc
116 containers:
117 - name: nova-novncproxy
118{{ tuple $envAll "nova_novncproxy" | include "helm-toolkit.snippets.image" | indent 10 }}
119{{ tuple $envAll $envAll.Values.pod.resources.novncproxy | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
120{{ dict "envAll" $envAll "application" "nova" "container" "nova_novncproxy" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
121{{ dict "envAll" $envAll "component" "novncproxy" "container" "default" "type" "liveness" "probeTemplate" (include "novaNovncproxyLivenessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
122{{ dict "envAll" $envAll "component" "novncproxy" "container" "default" "type" "readiness" "probeTemplate" (include "novaNovncproxyReadinessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
123 command:
124 - /tmp/nova-console-proxy.sh
125 ports:
126 - name: n-novnc
127 containerPort: {{ tuple "compute_novnc_proxy" "internal" "novnc_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
128 volumeMounts:
129 - name: pod-tmp
130 mountPath: /tmp
131 - name: nova-bin
132 mountPath: /tmp/nova-console-proxy.sh
133 subPath: nova-console-proxy.sh
134 readOnly: true
135 - name: nova-etc
136 mountPath: /etc/nova/nova.conf
137 subPath: nova.conf
138 readOnly: true
139 - name: nova-etc
140 mountPath: /etc/nova/logging.conf
141 subPath: logging.conf
142 readOnly: true
143 - name: pod-usr-share-novnc
144 mountPath: /usr/share/novnc
145 readOnly: true
146 - name: pod-shared
147 mountPath: /tmp/pod-shared
vexxhost-bot502c9412025-01-08 03:45:26 -0500148 {{- if $vencrypt_enabled }}
149 - name: {{ .Values.secrets.tls.compute_novnc_proxy.vencrypt.internal }}
150 mountPath: /etc/pki/nova-novncproxy
151 readOnly: true
152 {{- end }}
153
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500154{{- 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 }}
155{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute_novnc_proxy.novncproxy.internal "path" "/etc/nova/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
156{{- 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 }}
157{{ if $mounts_nova_novncproxy.volumeMounts }}{{ toYaml $mounts_nova_novncproxy.volumeMounts | indent 12 }}{{ end }}
158 volumes:
159 - name: pod-tmp
160 emptyDir: {}
161 - name: nova-bin
162 configMap:
163 name: nova-bin
164 defaultMode: 0555
165 - name: nova-etc
166 secret:
167 secretName: nova-etc
168 defaultMode: 0444
169 - name: pod-usr-share-novnc
170 emptyDir: {}
171 - name: pod-shared
172 emptyDir: {}
vexxhost-bot502c9412025-01-08 03:45:26 -0500173 {{- if $vencrypt_enabled }}
174 - name: {{ .Values.secrets.tls.compute_novnc_proxy.vencrypt.internal }}
175 secret:
176 secretName: {{ .Values.secrets.tls.compute_novnc_proxy.vencrypt.internal }}
177 defaultMode: 0444
178 {{- end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500179{{- dict "enabled" .Values.manifests.certificates "name" .Values.endpoints.oslo_db.auth.admin.secret.tls.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
180{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute_novnc_proxy.novncproxy.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500181{{- 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 }}
182{{ if $mounts_nova_novncproxy.volumes }}{{ toYaml $mounts_nova_novncproxy.volumes | indent 8 }}{{ end }}
183{{- end }}