blob: 36050a5cdef97c81b1fffb4dddfa54685c61a2d2 [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 "apiProbeTemplate" }}
16httpGet:
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010017 scheme: {{ tuple "identity" "service" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_scheme_lookup" | upper }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050018 path: /v3/
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010019 port: {{ tuple "identity" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050020{{- end }}
21
22{{- if .Values.manifests.deployment_api }}
23{{- $envAll := . }}
24
25{{- $mounts_keystone_api := .Values.pod.mounts.keystone_api.keystone_api }}
26{{- $mounts_keystone_api_init := .Values.pod.mounts.keystone_api.init_container }}
27
28{{- $serviceAccountName := "keystone-api" }}
29{{ tuple $envAll "api" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
30---
31apiVersion: apps/v1
32kind: Deployment
33metadata:
34 name: keystone-api
35 annotations:
36 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
37 labels:
38{{ tuple $envAll "keystone" "api" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
39spec:
40 replicas: {{ .Values.pod.replicas.api }}
41 selector:
42 matchLabels:
43{{ tuple $envAll "keystone" "api" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
44{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
45 template:
46 metadata:
47 labels:
48{{ tuple $envAll "keystone" "api" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
49 annotations:
50{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
51 configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
52 configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
Oleksandr K.a61b3b02024-11-19 15:46:06 +010053{{ tuple "keystone_api" . | include "helm-toolkit.snippets.custom_pod_annotations" | indent 8 }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050054{{ dict "envAll" $envAll "podName" "keystone-api" "containerNames" (list "keystone-api") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }}
55 spec:
56{{ dict "envAll" $envAll "application" "keystone" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
Dong Ma88ac73f2025-02-10 14:58:50 +000057{{ with .Values.pod.priorityClassName.keystone_api }}
58 priorityClassName: {{ . }}
59{{ end }}
60{{ with .Values.pod.runtimeClassName.keystone_api }}
61 runtimeClassName: {{ . }}
62{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050063 serviceAccountName: {{ $serviceAccountName }}
64 affinity:
65{{ tuple $envAll "keystone" "api" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
66 nodeSelector:
67 {{ .Values.labels.api.node_selector_key }}: {{ .Values.labels.api.node_selector_value }}
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010068{{ if $envAll.Values.pod.tolerations.keystone.enabled }}
69{{ tuple $envAll "keystone" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 6 }}
70{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050071 terminationGracePeriodSeconds: {{ .Values.pod.lifecycle.termination_grace_period.api.timeout | default "30" }}
72 initContainers:
73{{ tuple $envAll "api" $mounts_keystone_api_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
74 containers:
75 - name: keystone-api
76{{ tuple $envAll "keystone_api" | include "helm-toolkit.snippets.image" | indent 10 }}
77{{ tuple $envAll $envAll.Values.pod.resources.api | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
78{{ dict "envAll" $envAll "application" "keystone" "container" "keystone_api" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
79 command:
80 - /tmp/keystone-api.sh
81 - start
82 lifecycle:
83 preStop:
84 exec:
85 command:
86 - /tmp/keystone-api.sh
87 - stop
88 ports:
89 - name: ks-pub
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010090 containerPort: {{ tuple "identity" "service" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050091{{ dict "envAll" $envAll "component" "api" "container" "api" "type" "readiness" "probeTemplate" (include "apiProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | trim | indent 10 }}
92{{ dict "envAll" $envAll "component" "api" "container" "api" "type" "liveness" "probeTemplate" (include "apiProbeTemplate" $envAll | fromYaml) | include "helm-toolkit.snippets.kubernetes_probe" | trim | indent 10 }}
93 volumeMounts:
94 - name: pod-tmp
95 mountPath: /tmp
96 - name: etckeystone
97 mountPath: /etc/keystone
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020098 {{- range $k, $v := .Values.conf.ks_domains }}
99 - name: keystone-etc
100 mountPath: /etc/keystone/domains/keystone.{{ $k }}.conf
101 subPath: keystone.{{ $k }}.conf
102 readOnly: true
103 {{- end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500104 - name: logs-apache
105 mountPath: /var/log/apache2
106 - name: run-apache
107 mountPath: /var/run/apache2
108 - name: wsgi-keystone
109 mountPath: /var/www/cgi-bin/keystone
110 - name: keystone-etc
111 mountPath: /etc/keystone/keystone.conf
112 subPath: keystone.conf
113 readOnly: true
114 - name: keystone-etc
115 mountPath: /etc/apache2/ports.conf
116 subPath: ports.conf
117 readOnly: true
118 {{- if .Values.conf.keystone.DEFAULT.log_config_append }}
119 - name: keystone-etc
120 mountPath: {{ .Values.conf.keystone.DEFAULT.log_config_append }}
121 subPath: {{ base .Values.conf.keystone.DEFAULT.log_config_append }}
122 readOnly: true
123 {{- end }}
124 - name: keystone-etc
125 mountPath: /etc/keystone/policy.yaml
126 subPath: policy.yaml
127 readOnly: true
128 - name: keystone-etc
129 mountPath: /etc/keystone/access_rules.json
130 subPath: access_rules.json
131 readOnly: true
132 - name: keystone-etc
133 mountPath: /etc/keystone/sso_callback_template.html
134 subPath: sso_callback_template.html
135 readOnly: true
136 - name: keystone-etc
137 mountPath: {{ .Values.conf.software.apache2.conf_dir }}/wsgi-keystone.conf
138 subPath: wsgi-keystone.conf
139 readOnly: true
140 - name: keystone-etc
141 mountPath: {{ .Values.conf.software.apache2.mods_dir }}/mpm_event.conf
142 subPath: mpm_event.conf
143 readOnly: true
144{{- if .Values.conf.security }}
145 - name: keystone-etc
146 mountPath: {{ .Values.conf.software.apache2.conf_dir }}/security.conf
147 subPath: security.conf
148 readOnly: true
149{{- end }}
150 - name: keystone-bin
151 mountPath: /tmp/keystone-api.sh
152 subPath: keystone-api.sh
153 readOnly: true
154{{- if .Values.endpoints.ldap.auth.client.tls.ca }}
155 - name: keystone-ldap-tls
156 mountPath: /etc/keystone/ldap/tls.ca
157 subPath: tls.ca
158 readOnly: true
159{{- end }}
160{{- if eq .Values.conf.keystone.token.provider "fernet" }}
161 - name: keystone-fernet-keys
162 mountPath: {{ .Values.conf.keystone.fernet_tokens.key_repository }}
163{{- end }}
164 - name: keystone-credential-keys
165 mountPath: {{ .Values.conf.keystone.credential.key_repository }}
Oleksandr K.a61b3b02024-11-19 15:46:06 +0100166{{- dict "enabled" .Values.tls.oslo_db "name" .Values.endpoints.oslo_db.auth.admin.secret.tls.internal "path" "/etc/mysql/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
167{{- dict "enabled" .Values.tls.identity "name" .Values.secrets.tls.identity.api.internal "path" "/etc/keystone/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
168{{- dict "enabled" $envAll.Values.tls.oslo_messaging "name" $envAll.Values.endpoints.oslo_messaging.auth.admin.secret.tls.internal "path" "/etc/rabbitmq/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
169
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500170{{ if $mounts_keystone_api.volumeMounts }}{{ toYaml $mounts_keystone_api.volumeMounts | indent 12 }}{{ end }}
171 volumes:
172 - name: pod-tmp
173 emptyDir: {}
174 - name: etckeystone
175 emptyDir: {}
176 - name: wsgi-keystone
177 emptyDir: {}
178 - name: logs-apache
179 emptyDir: {}
180 - name: run-apache
181 emptyDir: {}
182 - name: keystone-etc
183 secret:
184 secretName: keystone-etc
185 defaultMode: 0444
186 - name: keystone-bin
187 configMap:
188 name: keystone-bin
189 defaultMode: 0555
190{{- if .Values.endpoints.ldap.auth.client.tls.ca }}
191 - name: keystone-ldap-tls
192 secret:
193 secretName: keystone-ldap-tls
194{{- end }}
195{{- if eq .Values.conf.keystone.token.provider "fernet" }}
196 - name: keystone-fernet-keys
197 secret:
198 secretName: keystone-fernet-keys
199{{- end }}
200 - name: keystone-credential-keys
201 secret:
202 secretName: keystone-credential-keys
Oleksandr K.a61b3b02024-11-19 15:46:06 +0100203{{- dict "enabled" .Values.tls.oslo_db "name" .Values.endpoints.oslo_db.auth.admin.secret.tls.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
204{{- dict "enabled" .Values.tls.identity "name" .Values.secrets.tls.identity.api.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
205{{- dict "enabled" $envAll.Values.tls.oslo_messaging "name" $envAll.Values.endpoints.oslo_messaging.auth.admin.secret.tls.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
206
Mohammed Naserf3f59a72023-01-15 21:02:04 -0500207{{ if $mounts_keystone_api.volumes }}{{ toYaml $mounts_keystone_api.volumes | indent 8 }}{{ end }}
208{{- end }}