github.com/deiscc/workflow-e2e@v0.0.0-20181208071258-117299af888f/charts/workflow-e2e/templates/workflow-e2e-pod.yaml (about) 1 apiVersion: v1 2 kind: Pod 3 metadata: 4 name: {{.Values.pod_name}} 5 labels: 6 heritage: deis 7 spec: 8 restartPolicy: Never 9 containers: 10 - name: tests 11 image: quay.io/{{.Values.org}}/workflow-e2e:{{.Values.docker_tag}} 12 imagePullPolicy: {{.Values.pull_policy}} 13 env: 14 - name: GINKGO_NODES 15 value: "{{.Values.ginkgo_nodes}}" 16 - name: JUNIT 17 value: "true" 18 - name: CLI_VERSION 19 value: "{{.Values.cli_version}}" 20 # set TEST env variable to run appropriate tests in e2e suite 21 - name: TEST 22 value: "{{.Values.test}}" 23 - name: DEBUG_MODE 24 value: "{{.Values.debug_mode}}" 25 volumeMounts: 26 - name: artifact-volume 27 mountPath: /root 28 - name: artifacts 29 image: busybox 30 imagePullPolicy: Always 31 command: ["tail", "-f", "/dev/null"] 32 volumeMounts: 33 - name: artifact-volume 34 mountPath: /root 35 volumes: 36 - name: artifact-volume 37 emptyDir: {}