Skip to content

Commit

Permalink
Adding prod-che-smoke-test.yaml pod description
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrewTSW committed Jun 8, 2023
1 parent be38bc2 commit c164166
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .ci/resources/pod-che-smoke-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
apiVersion: v1
kind: Pod
metadata:
name: happy-path-che
namespace: CHE-NAMESPACE
spec:
volumes:
- name: test-run-results
- name: ffmpeg-video
- name: dshm
emptyDir:
medium: Memory
containers:
# container containing the tests
- name: happy-path-test
image: quay.io/eclipse/che-e2e:next
imagePullPolicy: Always
env:
- name: VIDEO_RECORDING
value: true
- name: TEST_SUITE
value: 'test-all-devfiles'
- name: TS_SELENIUM_EDITOR
value: 'che-code'
- name: USERSTORY
value: 'SmokeTest'
- name: NODE_TLS_REJECT_UNAUTHORIZED
value: '0'
- name: TS_SELENIUM_BASE_URL
value: CHE_URL
- name: TS_SELENIUM_MULTIUSER
value: 'true'
- name: TS_SELENIUM_LOG_LEVEL
value: TRACE
- name: TS_SELENIUM_OCP_USERNAME
value: 'happypath-dev'
- name: TS_SELENIUM_OCP_PASSWORD
value: "dev"
- name: TS_SELENIUM_VALUE_OPENSHIFT_OAUTH
value: 'true'
- name: TS_OCP_LOGIN_PAGE_PROVIDER_TITLE
value: "dev-htpasswd"
- name: DELETE_WORKSPACE_ON_FAILED_TEST
value: "true"
- name: TS_SELENIUM_START_WORKSPACE_TIMEOUT
value: '360000'
- name: TS_IDE_LOAD_TIMEOUT
value: '40000'
volumeMounts:
- name: test-run-results
mountPath: /tmp/e2e/report/
- name: ffmpeg-video
mountPath: /tmp/ffmpeg_report/
- name: dshm
mountPath: /dev/shm
resources:
requests:
memory: "3Gi"
cpu: "2"
limits:
memory: "4Gi"
cpu: "2"
# Download results
- name: download-reports
image: eeacms/rsync
imagePullPolicy: IfNotPresent
volumeMounts:
- name: test-run-results
mountPath: /tmp/e2e/report/
- name: ffmpeg-video
mountPath: /tmp/ffmpeg_report/
command: ["sh"]
args:
[
"-c",
"while true; if [[ -f /tmp/done ]]; then exit 0; fi; do sleep 1; done",
]
restartPolicy: Never

0 comments on commit c164166

Please sign in to comment.