From cfed648ab6bc5316b7b8065b90ccbba5d7908714 Mon Sep 17 00:00:00 2001 From: jiezhao16 Date: Fri, 29 May 2026 17:46:31 -0400 Subject: [PATCH 1/2] Add request serving test to HCM periodics for 4.21 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable REQUEST_SERVING_COMPONENT_TEST in the HCM periodic e2e-aws job to validate request-serving topology against real ROSA management clusters. The hypershift-aws-run-e2e-external-commands.sh script already supports this flag — this change only sets the env var in the job config. Related: openshift/hypershift#7031 (test implementation) Related: openshift/release#70989 (self-managed CI workflow) --- .../openshift-hypershift-release-4.21__periodics-hcm.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml b/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml index 51577fa42fe2c..e5919139f8e76 100644 --- a/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml +++ b/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml @@ -37,6 +37,8 @@ tests: cron: 0 0 * * * steps: cluster_profile: hypershift-aws + env: + REQUEST_SERVING_COMPONENT_TEST: "true" workflow: hypershift-aws-e2e-external - as: e2e-aws-upgrade-minor cron: 0 1 * * * From ca28fa2a18ad497faa0253762b9bcf10982b2878 Mon Sep 17 00:00:00 2001 From: jiezhao16 Date: Fri, 29 May 2026 22:11:59 -0400 Subject: [PATCH 2/2] Add request serving test to HCM periodics for 4.21 --- ...ypershift-release-4.21__periodics-hcm.yaml | 7 +- ...ift-hypershift-release-4.21-periodics.yaml | 82 +++++++++++++++++++ 2 files changed, 88 insertions(+), 1 deletion(-) diff --git a/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml b/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml index e5919139f8e76..e8a27f24dd78a 100644 --- a/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml +++ b/ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.21__periodics-hcm.yaml @@ -35,11 +35,16 @@ resources: tests: - as: e2e-aws cron: 0 0 * * * + steps: + cluster_profile: hypershift-aws + workflow: hypershift-aws-e2e-external +- as: e2e-aws-request-serving + cron: 0 4 * * * steps: cluster_profile: hypershift-aws env: REQUEST_SERVING_COMPONENT_TEST: "true" - workflow: hypershift-aws-e2e-external + workflow: hypershift-aws-e2e-metrics - as: e2e-aws-upgrade-minor cron: 0 1 * * * steps: diff --git a/ci-operator/jobs/openshift/hypershift/openshift-hypershift-release-4.21-periodics.yaml b/ci-operator/jobs/openshift/hypershift/openshift-hypershift-release-4.21-periodics.yaml index 5fd211fc5817d..bab655728897b 100644 --- a/ci-operator/jobs/openshift/hypershift/openshift-hypershift-release-4.21-periodics.yaml +++ b/ci-operator/jobs/openshift/hypershift/openshift-hypershift-release-4.21-periodics.yaml @@ -3068,6 +3068,88 @@ periodics: - name: result-aggregator secret: secretName: result-aggregator +- agent: kubernetes + cluster: build01 + cron: 0 4 * * * + decorate: true + decoration_config: + skip_cloning: true + extra_refs: + - base_ref: release-4.21 + org: openshift + repo: hypershift + labels: + ci-operator.openshift.io/cloud: hypershift-aws + ci-operator.openshift.io/cloud-cluster-profile: hypershift-aws + ci-operator.openshift.io/variant: periodics-hcm + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: periodic-ci-openshift-hypershift-release-4.21-periodics-hcm-e2e-aws-request-serving + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --secret-dir=/secrets/ci-pull-credentials + - --target=e2e-aws-request-serving + - --variant=periodics-hcm + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/ci-pull-credentials + name: ci-pull-credentials + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: ci-pull-credentials + secret: + secretName: ci-pull-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator - agent: kubernetes cluster: build01 cron: 0 2 * * *