Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ tests:
cron: 30 0,4,21,22 * * *
steps:
cluster_profile: vsphere
workflow: openshift-e2e-vsphere
workflow: openshift-e2e-vsphere-release46
- as: e2e-vsphere-serial
cron: 20 0,4,21,22 * * *
steps:
Expand All @@ -128,7 +128,7 @@ tests:
cron: 10 0,4,21,22 * * *
steps:
cluster_profile: vsphere
workflow: openshift-e2e-vsphere-upi
workflow: openshift-e2e-vsphere-upi-release46
- as: e2e-vsphere-upi-serial
cron: 50 0,4,21,22 * * *
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ ref:
Name of the CSI driver manifest file to use. Used by the `openshift-tests`
program as TEST_CSI_DRIVER_FILES env. var., see its documentation for
details. The file must be present in ${SHARED_DIR}.
- name: TEST_IMAGE_MIRROR_REGISTRY
default: ""
documentation: |-
Defines the location of a pull-through cache to be used by e2e tests which directly pull an image. When defined, targeted
tests will pull from the specified registry. This variable is intended to be used for 4.6 configurations where the
docker.io rate limit results in failing CI jobs. Note: This variable is only honored for `openshift-tests` built from
the release-4.6 branch. This configuration is intended to be made in concert with an associated mirror configuration
to the cluster under test.
dependencies:
- name: "release:latest"
env: OPENSHIFT_UPGRADE_RELEASE_IMAGE_OVERRIDE
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
approvers:
- bostrt
- jcpowermac
- rvanderp3
- patrickdillon
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"path": "openshift/e2e/vsphere/release46/openshift-e2e-vsphere-release46-workflow.yaml",
"owners": {
"approvers": [
"bostrt",
"jcpowermac",
"rvanderp3",
"patrickdillon"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
workflow:
as: openshift-e2e-vsphere-release46
steps:
pre:
- chain: ipi-vsphere-pre
test:
- ref: openshift-e2e-test
post:
- chain: gather-core-dump
- chain: ipi-vsphere-post
env:
TEST_IMAGE_MIRROR_REGISTRY: e2e-cache.vmc-ci.devcluster.openshift.com:5000
documentation: |-
E2E test workflow for vSphere 4.6 CI jobs. This workflow sets an environment variable which informs
targetting tests of where to pull their images to avoid docker.io rate limiting.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
approvers:
- bostrt
- jcpowermac
- rvanderp3
- patrickdillon
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"path": "openshift/e2e/vsphere/upi/release46/openshift-e2e-vsphere-upi-release46-workflow.yaml",
"owners": {
"approvers": [
"bostrt",
"jcpowermac",
"rvanderp3",
"patrickdillon"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
workflow:
as: openshift-e2e-vsphere-upi-release46
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow is incredibly useful for OKD jobs, which uses a lot of docker.io images. Lets rename this to openshift-e2e-vsphere-upi-pullthrough or similar?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason for specifically calling out release-4.6 in the name is due to the fact that this configuration is not necessary in 4.7 and later as the targeted tests in openshift-tests already pull from other sources. The bulk of the tests which failed due to rate limiting are fixed by configuring a mirror in crio.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I see, okay

steps:
pre:
- chain: upi-vsphere-pre
test:
- ref: openshift-e2e-test
post:
- chain: upi-vsphere-post
env:
TEST_IMAGE_MIRROR_REGISTRY: e2e-cache.vmc-ci.devcluster.openshift.com:5000
documentation: |-
E2E test workflow for vSphere 4.6 CI jobs. This workflow sets an environment variable which informs
targetting tests of where to pull their images to avoid docker.io rate limiting.