From cbe3b8c8bfa1d3e36608e5e12cae837575187d58 Mon Sep 17 00:00:00 2001 From: Bryan Cox Date: Mon, 20 Apr 2026 14:59:39 -0400 Subject: [PATCH] fix: set CNV_SUBSCRIPTION_SOURCE for kubevirt AWS e2e jobs PR #77820 switched e2e-kubevirt-aws-ovn-reduced and e2e-kubevirt-aws-ovn from the hypershift-kubevirt-e2e-nested workflow to hypershift-kubevirt-e2e-aws. The nested workflow set CNV_SUBSCRIPTION_SOURCE: redhat-operators in its steps.env, but the aws workflow does not. Without this override, the hypershift-kubevirt-install step ref defaults to cnv-prerelease-catalog-source, which causes the install script to derive a nightly catalog image tag from the OCP cluster version (quay.io/openshift-cnv/nightly-catalog:5.0). This image does not exist, so the CatalogSource pod enters ImagePullBackOff, the OLM subscription never resolves, and the step fails after exhausting 30 retries. Set CNV_SUBSCRIPTION_SOURCE: redhat-operators explicitly in both kubevirt AWS job configs so the install script uses the stable channel from the redhat-operators catalog instead of the nonexistent nightly prerelease catalog image. Co-Authored-By: Claude Opus 4.6 --- .../config/openshift/hypershift/openshift-hypershift-main.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci-operator/config/openshift/hypershift/openshift-hypershift-main.yaml b/ci-operator/config/openshift/hypershift/openshift-hypershift-main.yaml index 7bef74f34f74e..d2f9d0cc45cd2 100644 --- a/ci-operator/config/openshift/hypershift/openshift-hypershift-main.yaml +++ b/ci-operator/config/openshift/hypershift/openshift-hypershift-main.yaml @@ -317,6 +317,7 @@ tests: steps: cluster_profile: openshift-org-aws env: + CNV_SUBSCRIPTION_SOURCE: redhat-operators COMPUTE_NODE_REPLICAS: "1" COMPUTE_NODE_TYPE: c5n.metal E2E_TEST_REGEX: ^TestCreateCluster$|TestAutoscaling @@ -332,6 +333,7 @@ tests: steps: cluster_profile: openshift-org-aws env: + CNV_SUBSCRIPTION_SOURCE: redhat-operators COMPUTE_NODE_REPLICAS: "1" COMPUTE_NODE_TYPE: c5n.metal ENABLE_HYPERSHIFT_CERT_ROTATION_SCALE: "true"