Skip to content

Dnm hcp runs for 422#79362

Open
Sandeepyadav93 wants to merge 1 commit into
openshift:mainfrom
Sandeepyadav93:dnm_hcp_runs_for_422
Open

Dnm hcp runs for 422#79362
Sandeepyadav93 wants to merge 1 commit into
openshift:mainfrom
Sandeepyadav93:dnm_hcp_runs_for_422

Conversation

@Sandeepyadav93
Copy link
Copy Markdown
Contributor

@Sandeepyadav93 Sandeepyadav93 commented May 16, 2026

This PR updates OpenShift CI job definitions for ROSA HCP performance testing and enhances a Hypershift infra helper script used when rebalancing Prometheus onto infra nodes.

CI / job changes (ocp-qe-perfscale-ci)

  • Affects: ci-operator job configs for openshift-eng/ocp-qe-perfscale-ci.
  • 4.21 nightly (rosa_hcp-4.21-nightly-x86):
    • Adds a cron schedule (0 2,14 * * *) for the control-plane-120nodes-onperfsector job.
    • Changes env.CLUSTER_SECTOR from perf2 → perf4.
    • Adds GC: "false" to the job environment (per summary; see 4.22 for explicit GC addition).
    • Removes an explicit always_run: false at the start of the test entry.
  • 4.22 nightly (rosa_hcp-4.22-nightly-x86):
    • Changes env.CLUSTER_SECTOR from perf2 → perf4.
    • Sets env.GC: "false" for the control-plane-120nodes-onperfsector job.
    • Removes several steps/tests from the rosa-aws-sts-hcp-mp workflow: openshift-qe-node-density, openshift-qe-node-density-cni, and openshift-qe-crd-scale.
  • Practical impact: shifts where (perf sector) and when (cron on 4.21) the large control-plane perf runs execute, disables GC for the 4.22 job, and removes a few node-density/crd-scale test steps from the 4.22 workflow—likely intended to rebalance load and change resource/Garbage-Collection behavior for these nightly perf runs.

Hypershift infra script changes (ci-operator step)

  • Affects: ci-operator step script openshift-qe-hypershift-infra-commands.sh used by perfscale/hypershift test steps.
  • Behavior change: the rebalanceInfra logic for prometheus-k8s now performs a full apply/reconcile/restart/verify flow:
    • Applies/overwrites cluster-monitoring-config to set prometheusK8s nodeSelector and infra tolerations.
    • Waits (with retry/timeout) for cluster-monitoring-operator reconciliation of the prometheus-k8s StatefulSet.
    • Restarts the StatefulSet and waits for rollout completion.
    • Verifies (with retries/backoff) that running Prometheus pods are scheduled on infra-labeled nodes and prints pod placement diagnostics and fails if verification does not succeed.
  • Practical impact: replaces a restart-only approach with a deterministic apply-and-verify workflow to ensure Prometheus actually lands on infra nodes, improving reliability and observability of infra rebalancing.

Other notes

  • No changes to exported/public API signatures.
  • Estimated review effort: Medium.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 16, 2026

Warning

Rate limit exceeded

@Sandeepyadav93 has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 58 minutes and 22 seconds before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Central YAML (inherited)

Review profile: CHILL

Plan: Enterprise

Run ID: af6f36f0-ca38-4d36-82b5-18d0e5afebf5

📥 Commits

Reviewing files that changed from the base of the PR and between 077b269 and c86e396.

⛔ Files ignored due to path filters (2)
  • ci-operator/jobs/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main-periodics.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main-presubmits.yaml is excluded by !ci-operator/jobs/**
📒 Files selected for processing (2)
  • ci-operator/config/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main__rosa_hcp-4.21-nightly-x86.yaml
  • ci-operator/config/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main__rosa_hcp-4.22-nightly-x86.yaml

Walkthrough

Updates perfscale CI job definitions (switch CLUSTER_SECTOR to perf4, add cron on rosa_hcp-4.21, add GC on 4.22, remove three test refs) and enhances hypershift infra script to apply monitoring config, wait for reconciliation, restart prometheus-k8s, and verify pod placement on infra nodes.

Changes

Perfscale CI Configuration Updates

Layer / File(s) Summary
Rosa HCP job env and workflow edits (4.21)
ci-operator/config/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main__rosa_hcp-4.21-nightly-x86.yaml
Added cron: "0 2,14 * * *", changed CLUSTER_SECTOR to perf4, added GC: "false", and removed always_run: false for control-plane-120nodes-onperfsector; workflow remains rosa-aws-sts-hcp-mp.
Rosa HCP job env and step edits (4.22)
ci-operator/config/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main__rosa_hcp-4.22-nightly-x86.yaml
Changed CLUSTER_SECTOR to perf4, added GC: "false" for control-plane-120nodes-onperfsector, and removed steps.test references to openshift-qe-node-density, openshift-qe-node-density-cni, and openshift-qe-crd-scale in the rosa-aws-sts-hcp-mp workflow.

Prometheus Infra Migration

Layer / File(s) Summary
Apply monitoring config and poll for reconciliation
ci-operator/step-registry/openshift-qe/hypershift-infra/openshift-qe-hypershift-infra-commands.sh
Create/apply cluster-monitoring-config with prometheusK8s nodeSelector and infra tolerations, then poll the cluster-monitoring-operator until the prometheus-k8s StatefulSet spec is updated, logging diagnostics on timeout.
StatefulSet restart
ci-operator/step-registry/openshift-qe/hypershift-infra/openshift-qe-hypershift-infra-commands.sh
Restart prometheus-k8s StatefulSet and wait for rollout completion (oc rollout restart + oc rollout status).
Pod placement verification
ci-operator/step-registry/openshift-qe/hypershift-infra/openshift-qe-hypershift-infra-commands.sh
Retry-based verification that Prometheus pods are scheduled on infra-labeled nodes; logs per-pod placement and exits with diagnostic output if pods do not move to infra nodes in time.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Suggested labels

rehearsals-ack, ok-to-test

Suggested reviewers

  • afcollins
  • venkataanil
  • krishvoor
🚥 Pre-merge checks | ✅ 10 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Title check ❓ Inconclusive The title 'Dnm hcp runs for 422' is vague and non-descriptive; it uses abbreviations and doesn't clearly convey what the actual changes are about. Provide a more descriptive title that clearly explains the main change, such as 'Update HCP test configuration for 4.22 and add Prometheus migration to infra nodes' or similar.
✅ Passed checks (10 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed PR contains only YAML CI config and bash script. No Ginkgo test definitions (It(), Describe(), Context(), When()) present. Check not applicable to configuration and infrastructure code.
Test Structure And Quality ✅ Passed The custom check is for reviewing Ginkgo test code quality. This PR contains only YAML CI configuration files and a Bash shell script—no Ginkgo test files. The check is not applicable.
Microshift Test Compatibility ✅ Passed This PR does not add new Ginkgo e2e tests. It only modifies CI configuration YAML files and an infrastructure setup shell script. The custom check for MicroShift compatibility is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed This PR does not add any new Ginkgo e2e tests. Changes are limited to CI configuration YAML files and a Bash shell script for infrastructure setup. The SNO compatibility check does not apply.
Topology-Aware Scheduling Compatibility ✅ Passed PR modifies only CI test job configurations and helper scripts in openshift/release, not production deployment manifests, operators, or controllers. Check not applicable.
Ote Binary Stdout Contract ✅ Passed Check not applicable. PR modifies CI configs, infrastructure scripts, and utility tools—not OTE test binaries that communicate via JSON stdout.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PR does not add new Ginkgo e2e tests. Changes are only to YAML CI configs and a bash infrastructure script. The check is not applicable.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@openshift-ci openshift-ci Bot requested review from mohit-sheth and rsevilla87 May 16, 2026 02:31
@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/uncc @mohit-sheth @rsevilla87

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In
`@ci-operator/step-registry/openshift-qe/hypershift-infra/openshift-qe-hypershift-infra-commands.sh`:
- Around line 107-121: The current check can set VERIFY_SUCCESS=true when no
prometheus pods were evaluated because ALL_ON_INFRA defaults to true; modify the
for node in $(oc get pods -n openshift-monitoring -o wide | grep -i
"prometheus-k8s-" | grep -i running | awk '{print$7}') loop to track whether any
pods were found (e.g., increment a POD_COUNT or set a FOUND_PROM_POD flag inside
the loop) and after the loop only set VERIFY_SUCCESS=true and break if BOTH
ALL_ON_INFRA is true and the pod count/FOUND_PROM_POD indicates at least one pod
was evaluated; ensure you update the conditional that currently checks [
"$ALL_ON_INFRA" = true ] to require the additional non-zero pod condition.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Central YAML (inherited)

Review profile: CHILL

Plan: Enterprise

Run ID: 2ff3fde4-3dc1-47ab-8104-03514ededc9e

📥 Commits

Reviewing files that changed from the base of the PR and between 0dc30c3 and 2316b75.

⛔ Files ignored due to path filters (2)
  • ci-operator/jobs/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main-periodics.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main-presubmits.yaml is excluded by !ci-operator/jobs/**
📒 Files selected for processing (3)
  • ci-operator/config/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main__rosa_hcp-4.21-nightly-x86.yaml
  • ci-operator/config/openshift-eng/ocp-qe-perfscale-ci/openshift-eng-ocp-qe-perfscale-ci-main__rosa_hcp-4.22-nightly-x86.yaml
  • ci-operator/step-registry/openshift-qe/hypershift-infra/openshift-qe-hypershift-infra-commands.sh

Comment on lines +107 to +121
while [ $RETRY -lt $MAX_RETRIES ]; do
ALL_ON_INFRA=true
for node in $(oc get pods -n openshift-monitoring -o wide | grep -i "prometheus-k8s-" | grep -i running | awk '{print$7}'); do
if [[ $(oc get nodes --no-headers -l node-role.kubernetes.io/infra | awk '{print$1}' | grep -w "$node") != "" ]]; then
log "$(date) - prometheus pod on $node (infra node) ✓"
else
log "$(date) - WARNING: prometheus pod on $node is NOT an infra node"
ALL_ON_INFRA=false
fi
done

if [ "$ALL_ON_INFRA" = true ]; then
log "$(date) - All prometheus-k8s pods are on infra nodes ✓"
VERIFY_SUCCESS=true
break
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.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Avoid false success when no Prometheus pods are matched.

Line 118 can mark verification successful even when zero pods were evaluated, because ALL_ON_INFRA starts as true and the loop may not run. This can incorrectly pass migration validation.

Proposed fix
         while [ $RETRY -lt $MAX_RETRIES ]; do
             ALL_ON_INFRA=true
-            for node in $(oc get pods -n openshift-monitoring -o wide | grep -i "prometheus-k8s-" | grep -i running | awk '{print$7}'); do
+            mapfile -t PROM_NODES < <(oc get pods -n openshift-monitoring -o wide | awk '/prometheus-k8s-/ && tolower($3)=="running" {print $7}')
+
+            if [ "${`#PROM_NODES`[@]}" -eq 0 ]; then
+                log "$(date) - WARNING: no running prometheus-k8s pods found yet"
+                ALL_ON_INFRA=false
+            fi
+
+            for node in "${PROM_NODES[@]}"; do
                 if [[ $(oc get nodes --no-headers -l node-role.kubernetes.io/infra | awk '{print$1}' | grep -w "$node") != "" ]]; then
                     log "$(date) - prometheus pod on $node (infra node) ✓"
                 else
                     log "$(date) - WARNING: prometheus pod on $node is NOT an infra node"
                     ALL_ON_INFRA=false
                 fi
             done
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
while [ $RETRY -lt $MAX_RETRIES ]; do
ALL_ON_INFRA=true
for node in $(oc get pods -n openshift-monitoring -o wide | grep -i "prometheus-k8s-" | grep -i running | awk '{print$7}'); do
if [[ $(oc get nodes --no-headers -l node-role.kubernetes.io/infra | awk '{print$1}' | grep -w "$node") != "" ]]; then
log "$(date) - prometheus pod on $node (infra node) ✓"
else
log "$(date) - WARNING: prometheus pod on $node is NOT an infra node"
ALL_ON_INFRA=false
fi
done
if [ "$ALL_ON_INFRA" = true ]; then
log "$(date) - All prometheus-k8s pods are on infra nodes ✓"
VERIFY_SUCCESS=true
break
while [ $RETRY -lt $MAX_RETRIES ]; do
ALL_ON_INFRA=true
mapfile -t PROM_NODES < <(oc get pods -n openshift-monitoring -o wide | awk '/prometheus-k8s-/ && tolower($3)=="running" {print $7}')
if [ "${`#PROM_NODES`[@]}" -eq 0 ]; then
log "$(date) - WARNING: no running prometheus-k8s pods found yet"
ALL_ON_INFRA=false
fi
for node in "${PROM_NODES[@]}"; do
if [[ $(oc get nodes --no-headers -l node-role.kubernetes.io/infra | awk '{print$1}' | grep -w "$node") != "" ]]; then
log "$(date) - prometheus pod on $node (infra node) ✓"
else
log "$(date) - WARNING: prometheus pod on $node is NOT an infra node"
ALL_ON_INFRA=false
fi
done
if [ "$ALL_ON_INFRA" = true ]; then
log "$(date) - All prometheus-k8s pods are on infra nodes ✓"
VERIFY_SUCCESS=true
break
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@ci-operator/step-registry/openshift-qe/hypershift-infra/openshift-qe-hypershift-infra-commands.sh`
around lines 107 - 121, The current check can set VERIFY_SUCCESS=true when no
prometheus pods were evaluated because ALL_ON_INFRA defaults to true; modify the
for node in $(oc get pods -n openshift-monitoring -o wide | grep -i
"prometheus-k8s-" | grep -i running | awk '{print$7}') loop to track whether any
pods were found (e.g., increment a POD_COUNT or set a FOUND_PROM_POD flag inside
the loop) and after the loop only set VERIFY_SUCCESS=true and break if BOTH
ALL_ON_INFRA is true and the pod count/FOUND_PROM_POD indicates at least one pod
was evaluated; ensure you update the conditional that currently checks [
"$ALL_ON_INFRA" = true ] to require the additional non-zero pod condition.

@Sandeepyadav93 Sandeepyadav93 force-pushed the dnm_hcp_runs_for_422 branch from 2316b75 to 085ae44 Compare May 16, 2026 13:20
@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93 Sandeepyadav93 force-pushed the dnm_hcp_runs_for_422 branch from 085ae44 to 077b269 Compare May 17, 2026 07:07
@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.21-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@Sandeepyadav93 Sandeepyadav93 force-pushed the dnm_hcp_runs_for_422 branch from 077b269 to fd9292c Compare May 18, 2026 15:04
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 18, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: Sandeepyadav93
Once this PR has been reviewed and has the lgtm label, please assign mffiedler for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@Sandeepyadav93 Sandeepyadav93 force-pushed the dnm_hcp_runs_for_422 branch from fd9292c to c86e396 Compare May 18, 2026 15:05
@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-node-density-heavy-24nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@Sandeepyadav93: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-node-density-heavy-24nodes-onperfsector N/A periodic Periodic changed
periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector N/A periodic Periodic changed
periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.21-nightly-x86-control-plane-120nodes-onperfsector N/A periodic Periodic changed
Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@Sandeepyadav93
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-node-density-heavy-24nodes-onperfsector

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@Sandeepyadav93: job(s): either don't exist or were not found to be affected, and cannot be rehearsed

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 18, 2026

@Sandeepyadav93: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/rehearse/periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.21-nightly-x86-control-plane-120nodes-onperfsector 077b269 link unknown /pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.21-nightly-x86-control-plane-120nodes-onperfsector
ci/rehearse/periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector 077b269 link unknown /pj-rehearse periodic-ci-openshift-eng-ocp-qe-perfscale-ci-main-rosa_hcp-4.22-nightly-x86-control-plane-120nodes-onperfsector

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant