Skip to content
Open
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 @@ -1115,6 +1115,7 @@ tests:
CSI_MANAGEMENT_REMOVED: "true"
FEATURE_GATES: '["VSphereMixedNodeEnv=true"]'
FEATURE_SET: CustomNoUpgrade
OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE: registry.build07.ci.openshift.org/ci-ln-z8dhs42/release:latest
STORAGE_CO_DEGRADE_CHECK: "true"
TEST_SKIPS: \[sig-storage\]\|\[sig-arch\]\[Early\] Operators low level operators
workflow: openshift-e2e-vsphere-upi-hybrid-env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ workflow:
pre:
- chain: upi-vsphere-pre
- ref: ipi-install-vsphere-virt
- ref: wait
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ echo "${lb_ip_address}" >>"${SHARED_DIR}"/vips.txt
echo "${lb_ip_address}" >>"${SHARED_DIR}"/vips.txt

export HOME=/tmp
export OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE=${RELEASE_IMAGE_LATEST}
# Use job-level override if set (e.g. custom OCP image for debug cluster); otherwise use release controller image.
export OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE=${OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE:-$RELEASE_IMAGE_LATEST}
# Ensure ignition assets are configured with the correct invoker to track CI jobs.
export OPENSHIFT_INSTALL_INVOKER=openshift-internal-ci/${JOB_NAME_SAFE}/${BUILD_ID}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ ref:
default: "3"
- name: COMPUTE_NODE_REPLICAS
default: "3"
- name: OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE
default: ""
documentation: |-
Optional. Override the OCP release image pull spec for install (e.g. for debug). If set, used instead of the release controller image.
- name: PULL_THROUGH_CACHE
default: "enabled"
documentation: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ echo "${lb_ip_address}" >>"${SHARED_DIR}"/vips.txt
echo "${lb_ip_address}" >>"${SHARED_DIR}"/vips.txt

export HOME=/tmp
export OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE=${RELEASE_IMAGE_LATEST}
# Use job-level override if set (e.g. custom OCP image for debug cluster); otherwise use release controller image.
export OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE=${OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE:-$RELEASE_IMAGE_LATEST}
# Ensure ignition assets are configured with the correct invoker to track CI jobs.
export OPENSHIFT_INSTALL_INVOKER=openshift-internal-ci/${JOB_NAME_SAFE}/${BUILD_ID}

Expand Down