Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 1 | {{/* |
| 2 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | you may not use this file except in compliance with the License. |
| 4 | You may obtain a copy of the License at |
| 5 | |
| 6 | http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | |
| 8 | Unless required by applicable law or agreed to in writing, software |
| 9 | distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | See the License for the specific language governing permissions and |
| 12 | limitations under the License. |
| 13 | */}} |
| 14 | |
Oleksandr Kozachenko | a10d785 | 2023-02-02 22:01:16 +0100 | [diff] [blame] | 15 | {{- if (.Values.global).subchart_release_name }} |
| 16 | {{- $_ := set . "deployment_name" .Chart.Name }} |
| 17 | {{- else }} |
| 18 | {{- $_ := set . "deployment_name" .Release.Name }} |
| 19 | {{- end }} |
| 20 | |
Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 21 | {{- if .Values.manifests.pod_rally_test }} |
| 22 | {{- $envAll := . }} |
| 23 | |
| 24 | {{- $mounts_tests := .Values.pod.mounts.nova_tests.nova_tests }} |
| 25 | {{- $mounts_tests_init := .Values.pod.mounts.nova_tests.init_container }} |
| 26 | |
Oleksandr Kozachenko | a10d785 | 2023-02-02 22:01:16 +0100 | [diff] [blame] | 27 | {{- $serviceAccountName := print $envAll.deployment_name "-test" }} |
Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 28 | {{ tuple $envAll "tests" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }} |
| 29 | --- |
| 30 | apiVersion: v1 |
| 31 | kind: Pod |
| 32 | metadata: |
Oleksandr Kozachenko | a10d785 | 2023-02-02 22:01:16 +0100 | [diff] [blame] | 33 | name: {{ print $envAll.deployment_name "-test" }} |
Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 34 | labels: |
| 35 | {{ tuple $envAll "nova" "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" "nova-test" "containerNames" (list "init" "nova-test" "nova-test-ks-user") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 4 }} |
| 40 | spec: |
| 41 | nodeSelector: |
| 42 | {{ .Values.labels.test.node_selector_key }}: {{ .Values.labels.test.node_selector_value }} |
Oleksandr Kozachenko | a10d785 | 2023-02-02 22:01:16 +0100 | [diff] [blame] | 43 | {{ if $envAll.Values.pod.tolerations.nova.enabled }} |
| 44 | {{ tuple $envAll "nova" | include "helm-toolkit.snippets.kubernetes_tolerations" | indent 2 }} |
| 45 | {{ end }} |
Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 46 | restartPolicy: Never |
Dong Ma | bb1ef1f | 2025-02-11 16:47:00 +0000 | [diff] [blame] | 47 | {{ with .Values.pod.priorityClassName.nova_tests }} |
| 48 | priorityClassName: {{ . }} |
| 49 | {{ end }} |
| 50 | {{ with .Values.pod.runtimeClassName.nova_tests }} |
| 51 | runtimeClassName: {{ . }} |
| 52 | {{ end }} |
Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 53 | serviceAccountName: {{ $serviceAccountName }} |
| 54 | initContainers: |
| 55 | {{ tuple $envAll "tests" $mounts_tests_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 4 }} |
| 56 | - name: nova-test-ks-user |
| 57 | {{ tuple $envAll "ks_user" | include "helm-toolkit.snippets.image" | indent 6 }} |
| 58 | {{ tuple $envAll $envAll.Values.pod.resources.jobs.ks_user | include "helm-toolkit.snippets.kubernetes_resources" | indent 6 }} |
| 59 | command: |
| 60 | - /tmp/ks-user.sh |
| 61 | volumeMounts: |
| 62 | - name: pod-tmp |
| 63 | mountPath: /tmp |
| 64 | - name: nova-bin |
| 65 | mountPath: /tmp/ks-user.sh |
| 66 | subPath: ks-user.sh |
| 67 | readOnly: true |
| 68 | {{ dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute.osapi.internal | include "helm-toolkit.snippets.tls_volume_mount" | indent 8 }} |
| 69 | env: |
| 70 | {{- with $env := dict "ksUserSecret" .Values.secrets.identity.admin "useCA" .Values.manifests.certificates }} |
| 71 | {{- include "helm-toolkit.snippets.keystone_openrc_env_vars" $env | indent 8 }} |
| 72 | {{- end }} |
| 73 | - name: SERVICE_OS_SERVICE_NAME |
| 74 | value: "test" |
| 75 | {{- with $env := dict "ksUserSecret" .Values.secrets.identity.test }} |
| 76 | {{- include "helm-toolkit.snippets.keystone_user_create_env_vars" $env | indent 8 }} |
| 77 | {{- end }} |
| 78 | - name: SERVICE_OS_ROLE |
| 79 | value: {{ .Values.endpoints.identity.auth.test.role | quote }} |
| 80 | containers: |
| 81 | - name: nova-test |
| 82 | {{ tuple $envAll "test" | include "helm-toolkit.snippets.image" | indent 6 }} |
| 83 | {{ tuple $envAll $envAll.Values.pod.resources.jobs.tests | include "helm-toolkit.snippets.kubernetes_resources" | indent 6 }} |
| 84 | env: |
| 85 | {{- with $env := dict "ksUserSecret" .Values.secrets.identity.admin "useCA" .Values.manifests.certificates}} |
| 86 | {{- include "helm-toolkit.snippets.keystone_openrc_env_vars" $env | indent 8 }} |
| 87 | {{- end }} |
| 88 | {{- with $env := dict "ksUserSecret" .Values.secrets.identity.test }} |
| 89 | {{- include "helm-toolkit.snippets.keystone_user_create_env_vars" $env | indent 8 }} |
| 90 | {{- end }} |
| 91 | - name: RALLY_ENV_NAME |
Oleksandr Kozachenko | a10d785 | 2023-02-02 22:01:16 +0100 | [diff] [blame] | 92 | value: {{.deployment_name}} |
Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 93 | command: |
| 94 | - /tmp/rally-test.sh |
| 95 | volumeMounts: |
| 96 | - name: pod-tmp |
| 97 | mountPath: /tmp |
| 98 | - name: nova-etc |
| 99 | mountPath: /etc/rally/rally_tests.yaml |
| 100 | subPath: rally_tests.yaml |
| 101 | readOnly: true |
| 102 | - name: nova-bin |
| 103 | mountPath: /tmp/rally-test.sh |
| 104 | subPath: rally-test.sh |
| 105 | readOnly: true |
| 106 | - name: rally-db |
| 107 | mountPath: /var/lib/rally |
| 108 | {{ dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute.osapi.internal | include "helm-toolkit.snippets.tls_volume_mount" | indent 8 }} |
| 109 | {{ if $mounts_tests.volumeMounts }}{{ toYaml $mounts_tests.volumeMounts | indent 8 }}{{ end }} |
| 110 | volumes: |
| 111 | - name: pod-tmp |
| 112 | emptyDir: {} |
| 113 | - name: nova-etc |
| 114 | secret: |
| 115 | secretName: nova-etc |
| 116 | defaultMode: 0444 |
| 117 | - name: nova-bin |
| 118 | configMap: |
| 119 | name: nova-bin |
| 120 | defaultMode: 0555 |
| 121 | - name: rally-db |
| 122 | emptyDir: {} |
| 123 | {{- dict "enabled" .Values.manifests.certificates "name" .Values.secrets.tls.compute.osapi.internal | include "helm-toolkit.snippets.tls_volume" | indent 4 }} |
| 124 | {{ if $mounts_tests.volumes }}{{ toYaml $mounts_tests.volumes | indent 4 }}{{ end }} |
| 125 | {{- end }} |