blob: 155dbae3757ee1fd1b8735fd62f347fcccb217d2 [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
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010015{{- if (.Values.global).subchart_release_name }}
16{{- $_ := set . "deployment_name" .Chart.Name }}
17{{- else }}
18{{- $_ := set . "deployment_name" .Release.Name }}
19{{- end }}
20
Mohammed Naserf3f59a72023-01-15 21:02:04 -050021{{- if .Values.manifests.pod_rally_test }}
22{{- $envAll := . }}
23
24{{- $mounts_tests := .Values.pod.mounts.keystone_tests.keystone_tests }}
25{{- $mounts_tests_init := .Values.pod.mounts.keystone_tests.init_container }}
26
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010027{{- $serviceAccountName := print $envAll.deployment_name "-test" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050028{{ tuple $envAll "tests" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
29---
30apiVersion: v1
31kind: Pod
32metadata:
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010033 name: {{ print $envAll.deployment_name "-test" }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050034 labels:
35{{ tuple $envAll "keystone" "test" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
36 annotations:
37 "helm.sh/hook": test-success
38 {{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
39{{ dict "envAll" $envAll "podName" "keystone-test" "containerNames" (list "init" "keystone-test" "keystone-test-ks-user") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 4 }}
40spec:
41 restartPolicy: Never
42{{ dict "envAll" $envAll "application" "test" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 2 }}
43 nodeSelector:
44 {{ .Values.labels.test.node_selector_key }}: {{ .Values.labels.test.node_selector_value }}
Dong Ma2343e0f2025-02-10 14:58:50 +000045{{ with .Values.pod.priorityClassName.keystone_tests }}
46 priorityClassName: {{ . }}
47{{ end }}
48{{ with .Values.pod.runtimeClassName.keystone_tests }}
49 runtimeClassName: {{ . }}
50{{ end }}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050051 serviceAccountName: {{ $serviceAccountName }}
52 initContainers:
53{{ tuple $envAll "tests" $mounts_tests_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 4 }}
54 - name: keystone-test-ks-user
55{{ tuple $envAll "ks_user" | include "helm-toolkit.snippets.image" | indent 6 }}
56{{ tuple $envAll $envAll.Values.pod.resources.jobs.ks_user | include "helm-toolkit.snippets.kubernetes_resources" | indent 6 }}
57{{ dict "envAll" $envAll "application" "test" "container" "keystone_test_ks_user" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 6 }}
58 command:
59 - /tmp/ks-user.sh
60 volumeMounts:
61 - name: pod-tmp
62 mountPath: /tmp
63 - name: keystone-bin
64 mountPath: /tmp/ks-user.sh
65 subPath: ks-user.sh
66 readOnly: true
67{{- if and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal }}
68{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.identity.api.internal | include "helm-toolkit.snippets.tls_volume_mount" | indent 8 }}
69{{- end }}
70 env:
71{{- with $env := dict "ksUserSecret" .Values.secrets.identity.admin "useCA" (and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal) }}
72{{- include "helm-toolkit.snippets.keystone_openrc_env_vars" $env | indent 8 }}
73{{- end }}
74 - name: SERVICE_OS_SERVICE_NAME
75 value: "test"
76{{- with $env := dict "ksUserSecret" .Values.secrets.identity.test }}
77{{- include "helm-toolkit.snippets.keystone_user_create_env_vars" $env | indent 8 }}
78{{- end }}
79 - name: SERVICE_OS_ROLE
80 value: {{ .Values.endpoints.identity.auth.test.role | quote }}
81 containers:
82 - name: keystone-test
83{{ tuple $envAll "test" | include "helm-toolkit.snippets.image" | indent 6 }}
84{{ tuple $envAll $envAll.Values.pod.resources.jobs.tests | include "helm-toolkit.snippets.kubernetes_resources" | indent 6 }}
85{{ dict "envAll" $envAll "application" "test" "container" "keystone_test" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 6}}
86 env:
87{{- with $env := dict "ksUserSecret" .Values.secrets.identity.admin "useCA" (and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal) }}
88{{- include "helm-toolkit.snippets.keystone_openrc_env_vars" $env | indent 8 }}
89{{- end }}
90{{- with $env := dict "ksUserSecret" .Values.secrets.identity.test }}
91{{- include "helm-toolkit.snippets.keystone_user_create_env_vars" $env | indent 8 }}
92{{- end }}
93 - name: RALLY_ENV_NAME
Oleksandr Kozachenkoa10d7852023-02-02 22:01:16 +010094 value: {{.deployment_name}}
Mohammed Naserf3f59a72023-01-15 21:02:04 -050095 command:
96 - /tmp/rally-test.sh
97 volumeMounts:
98 - name: pod-tmp
99 mountPath: /tmp
100 - name: keystone-etc
101 mountPath: /etc/rally/rally_tests.yaml
102 subPath: rally_tests.yaml
103 readOnly: true
104 - name: keystone-bin
105 mountPath: /tmp/rally-test.sh
106 subPath: rally-test.sh
107 readOnly: true
108 - name: rally-db
109 mountPath: /var/lib/rally
110 - name: rally-work
111 mountPath: /home/rally/.rally
112{{- if and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal }}
113{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.identity.api.internal | include "helm-toolkit.snippets.tls_volume_mount" | indent 8 }}
114{{- end }}
115{{ if $mounts_tests.volumeMounts }}{{ toYaml $mounts_tests.volumeMounts | indent 8 }}{{ end }}
116 volumes:
117 - name: pod-tmp
118 emptyDir: {}
119 - name: keystone-etc
120 secret:
121 secretName: keystone-etc
122 defaultMode: 0444
123 - name: keystone-bin
124 configMap:
125 name: keystone-bin
126 defaultMode: 0555
127 - name: rally-db
128 emptyDir: {}
129 - name: rally-work
130 emptyDir: {}
131{{- if and .Values.manifests.certificates .Values.secrets.tls.identity.api.internal }}
132{{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.identity.api.internal | include "helm-toolkit.snippets.tls_volume" | indent 4 }}
133{{- end }}
134{{ if $mounts_tests.volumes }}{{ toYaml $mounts_tests.volumes | indent 4 }}{{ end }}
135{{- end }}