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 | |
| 15 | {{- if and .Values.deployment.client_secrets .Values.manifests.helm_tests }} |
| 16 | {{- $envAll := . }} |
| 17 | |
| 18 | {{- $serviceAccountName := printf "%s-%s" $envAll.Release.Name "test" }} |
| 19 | {{ tuple $envAll "tests" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }} |
| 20 | --- |
| 21 | kind: ClusterRole |
| 22 | apiVersion: rbac.authorization.k8s.io/v1 |
| 23 | metadata: |
| 24 | name: {{ $serviceAccountName }} |
| 25 | rules: |
| 26 | - apiGroups: |
| 27 | - '' |
| 28 | resources: |
| 29 | - persistentvolumes |
| 30 | - persistentvolumeclaims |
| 31 | - events |
| 32 | - pods |
| 33 | - pods/log |
| 34 | - configmaps |
| 35 | verbs: |
| 36 | - create |
| 37 | - get |
| 38 | - delete |
| 39 | - list |
| 40 | - apiGroups: |
| 41 | - storage.k8s.io |
| 42 | resources: |
| 43 | - storageclasses |
| 44 | verbs: |
| 45 | - get |
| 46 | - list |
| 47 | - watch |
| 48 | --- |
| 49 | apiVersion: rbac.authorization.k8s.io/v1 |
| 50 | kind: ClusterRoleBinding |
| 51 | metadata: |
| 52 | name: {{ $serviceAccountName }} |
| 53 | subjects: |
| 54 | - kind: ServiceAccount |
| 55 | name: {{ $serviceAccountName }} |
| 56 | namespace: {{ $envAll.Release.Namespace }} |
| 57 | roleRef: |
| 58 | kind: ClusterRole |
| 59 | name: {{ $serviceAccountName }} |
| 60 | apiGroup: rbac.authorization.k8s.io |
| 61 | --- |
| 62 | apiVersion: v1 |
| 63 | kind: Pod |
| 64 | metadata: |
| 65 | name: "{{.Release.Name}}-test" |
| 66 | labels: |
| 67 | {{ tuple $envAll "ceph" "provisioner-test" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }} |
| 68 | annotations: |
| 69 | "helm.sh/hook": test-success |
| 70 | {{ dict "envAll" $envAll "podName" $serviceAccountName "containerNames" (list "init" "ceph-provisioner-helm-test") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 4 }} |
| 71 | spec: |
| 72 | {{ dict "envAll" $envAll "application" "test" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 2 }} |
| 73 | restartPolicy: Never |
| 74 | serviceAccountName: {{ $serviceAccountName }} |
| 75 | nodeSelector: |
| 76 | {{ .Values.labels.test.node_selector_key }}: {{ .Values.labels.test.node_selector_value }} |
| 77 | initContainers: |
| 78 | {{ tuple $envAll "tests" list | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 4 }} |
| 79 | containers: |
| 80 | - name: ceph-provisioner-helm-test |
| 81 | {{ tuple $envAll "ceph_config_helper" | include "helm-toolkit.snippets.image" | indent 6 }} |
| 82 | {{ tuple $envAll $envAll.Values.pod.resources.jobs.tests | include "helm-toolkit.snippets.kubernetes_resources" | indent 6 }} |
| 83 | {{ dict "envAll" $envAll "application" "test" "container" "test" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 6 }} |
| 84 | env: |
| 85 | - name: PVC_NAMESPACE |
| 86 | value: {{ .Release.Namespace }} |
| 87 | - name: RBD_TEST_POD_NAME |
| 88 | value: {{ .Values.pod.test_pod.rbd.name }} |
| 89 | - name: RBD_TEST_PVC_NAME |
| 90 | value: {{ .Values.pod.test_pod.rbd.pvc_name }} |
| 91 | - name: CSI_RBD_TEST_POD_NAME |
| 92 | value: {{ .Values.pod.test_pod.csi_rbd.name }} |
| 93 | - name: CSI_RBD_TEST_PVC_NAME |
| 94 | value: {{ .Values.pod.test_pod.csi_rbd.pvc_name }} |
| 95 | - name: CEPHFS_TEST_POD_NAME |
| 96 | value: {{ .Values.pod.test_pod.cephfs.name }} |
| 97 | - name: CEPHFS_TEST_PVC_NAME |
| 98 | value: {{ .Values.pod.test_pod.cephfs.pvc_name }} |
| 99 | - name: TEST_POD_WAIT_TIMEOUT |
| 100 | value: {{ .Values.pod.test_pod.wait_timeout | quote }} |
| 101 | command: |
| 102 | - /tmp/helm-tests.sh |
| 103 | volumeMounts: |
| 104 | - name: ceph-provisioners-bin-clients |
| 105 | mountPath: /tmp/helm-tests.sh |
| 106 | subPath: helm-tests.sh |
| 107 | readOnly: true |
| 108 | - name: pod-tmp |
| 109 | mountPath: /tmp |
| 110 | volumes: |
| 111 | - name: ceph-provisioners-bin-clients |
| 112 | configMap: |
| 113 | name: {{ printf "%s-%s" $envAll.Release.Name "ceph-prov-bin-clients" | quote }} |
| 114 | defaultMode: 0555 |
| 115 | - name: pod-tmp |
| 116 | emptyDir: {} |
| 117 | {{- end }} |