blob: eca1628e101449129fa7c4d400f0e6bde6c5f64d [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 "novaSpiceproxyLivenessProbeTemplate" }}
16tcpSocket:
17 port: {{ tuple "compute_spice_proxy" "internal" "spice_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
18{{- end }}
19
Oleksandr Kozachenkoc0022be2023-05-23 20:36:21 +020020{{- define "novaSpiceproxyReadinessProbeTemplate" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050021tcpSocket:
22 port: {{ tuple "compute_spice_proxy" "internal" "spice_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
23{{- end }}
24
25{{- if and .Values.manifests.deployment_spiceproxy ( eq .Values.console.console_kind "spice" )}}
26{{- $envAll := . }}
27
28{{- $mounts_nova_spiceproxy := .Values.pod.mounts.nova_spiceproxy.nova_spiceproxy }}
29{{- $mounts_nova_spiceproxy_init := .Values.pod.mounts.nova_spiceproxy.init_spiceproxy }}
30
31{{- $serviceAccountName := "nova-spiceproxy" }}
32{{ tuple $envAll "spiceproxy" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
33---
34apiVersion: apps/v1
35kind: Deployment
36metadata:
37 name: nova-spiceproxy
38 annotations:
39 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
40 labels:
41{{ tuple $envAll "nova" "spice-proxy" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
42spec:
43 replicas: {{ .Values.pod.replicas.spiceproxy }}
44 selector:
45 matchLabels:
46{{ tuple $envAll "nova" "spice-proxy" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
47{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
48 template:
49 metadata:
50 labels:
51{{ tuple $envAll "nova" "spice-proxy" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
52 annotations:
53{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
54 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
55 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
vexxhost-bot502c9412025-01-08 03:45:26 -050056{{ tuple "nova_spiceproxy" . | include "helm-toolkit.snippets.custom_pod_annotations" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050057 spec:
58 serviceAccountName: {{ $serviceAccountName }}
59{{ dict "envAll" $envAll "application" "nova" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
60 affinity:
61{{ tuple $envAll "nova" "spice-proxy" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
62 nodeSelector:
63 {{ .Values.labels.spiceproxy.node_selector_key }}: {{ .Values.labels.spiceproxy.node_selector_value }}
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010064{{ if $envAll.Values.pod.tolerations.nova.enabled }}
65{{ tuple $envAll "nova" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
66{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050067 hostNetwork: true
68 dnsPolicy: ClusterFirstWithHostNet
69 initContainers:
70{{ tuple $envAll "spiceproxy" $mounts_nova_spiceproxy_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
71 - name: nova-spiceproxy-init
72{{ tuple $envAll "nova_spiceproxy" | include "helm-toolkit.snippets.image" | indent 10 }}
73{{ tuple $envAll $envAll.Values.pod.resources.spiceproxy | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
74{{ dict "envAll" $envAll "application" "nova" "container" "nova_spiceproxy_init" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
75 command:
76 - /tmp/nova-console-proxy-init.sh
77 volumeMounts:
78 - name: pod-tmp
79 mountPath: /tmp
80 - name: nova-bin
81 mountPath: /tmp/nova-console-proxy-init.sh
82 subPath: nova-console-proxy-init.sh
83 readOnly: true
84 - name: nova-etc
85 mountPath: /etc/nova/nova.conf
86 subPath: nova.conf
87 readOnly: true
88 {{- if .Values.conf.nova.DEFAULT.log_config_append }}
89 - name: nova-etc
90 mountPath: {{ .Values.conf.nova.DEFAULT.log_config_append }}
91 subPath: {{ base .Values.conf.nova.DEFAULT.log_config_append }}
92 readOnly: true
93 {{- end }}
94 - name: pod-shared
95 mountPath: /tmp/pod-shared
96 - name: nova-spiceproxy-init-assets
97{{ tuple $envAll "nova_spiceproxy_assets" | include "helm-toolkit.snippets.image" | indent 10 }}
98{{ tuple $envAll $envAll.Values.pod.resources.spiceproxy | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
99{{ dict "envAll" $envAll "application" "nova" "container" "nova_spiceproxy_init_assets" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
100 command:
101 - /tmp/nova-console-proxy-init-assets.sh
102 volumeMounts:
103 - name: pod-tmp
104 mountPath: /tmp
105 - name: nova-bin
106 mountPath: /tmp/nova-console-proxy-init-assets.sh
107 subPath: nova-console-proxy-init-assets.sh
108 readOnly: true
109 - name: pod-usr-share-spice-html5
110 mountPath: /tmp/usr/share/spice-html5
111 containers:
112 - name: nova-spiceproxy
113{{ tuple $envAll "nova_spiceproxy" | include "helm-toolkit.snippets.image" | indent 10 }}
114{{ tuple $envAll $envAll.Values.pod.resources.spiceproxy | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
115{{ dict "envAll" $envAll "application" "nova" "container" "nova_spiceproxy" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
116{{ dict "envAll" $envAll "component" "compute-spice-proxy" "container" "default" "type" "liveness" "probeTemplate" (include "novaSpiceproxyLivenessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
117{{ dict "envAll" $envAll "component" "compute-spice-proxy" "container" "default" "type" "readiness" "probeTemplate" (include "novaSpiceproxyReadinessProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | indent 10 }}
118 command:
119 - /tmp/nova-console-proxy.sh
120 ports:
121 - name: n-spice
122 containerPort: {{ tuple "compute_spice_proxy" "internal" "spice_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
123 volumeMounts:
124 - name: pod-tmp
125 mountPath: /tmp
126 - name: nova-bin
127 mountPath: /tmp/nova-console-proxy.sh
128 subPath: nova-console-proxy.sh
129 readOnly: true
130 - name: nova-etc
131 mountPath: /etc/nova/nova.conf
132 subPath: nova.conf
133 readOnly: true
134 {{- if .Values.conf.nova.DEFAULT.log_config_append }}
135 - name: nova-etc
136 mountPath: {{ .Values.conf.nova.DEFAULT.log_config_append }}
137 subPath: {{ base .Values.conf.nova.DEFAULT.log_config_append }}
138 readOnly: true
139 {{- end }}
140 - name: pod-usr-share-spice-html5
141 mountPath: /usr/share/spice-html5
142 readOnly: true
143 - name: pod-shared
144 mountPath: /tmp/pod-shared
145{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute_spice_proxy.spiceproxy.internal "path" "/etc/nova/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
146{{ if $mounts_nova_spiceproxy.volumeMounts }}{{ toYaml $mounts_nova_spiceproxy.volumeMounts | indent 12 }}{{ end }}
147 volumes:
148 - name: pod-tmp
149 emptyDir: {}
150 - name: nova-bin
151 configMap:
152 name: nova-bin
153 defaultMode: 0555
154 - name: nova-etc
155 secret:
156 secretName: nova-etc
157 defaultMode: 0444
158 - name: pod-usr-share-spice-html5
159 emptyDir: {}
160 - name: pod-shared
161 emptyDir: {}
162{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute_spice_proxy.spiceproxy.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
163{{ if $mounts_nova_spiceproxy.volumes }}{{ toYaml $mounts_nova_spiceproxy.volumes | indent 8 }}{{ end }}
164{{- end }}