Skip to content

ROSAENG-1331: Add MC e2e testing workflow for SRE operators (RMO, AVO) - #82850

Open
dustman9000 wants to merge 1 commit into
openshift:mainfrom
dustman9000:rmo-mc-e2e
Open

ROSAENG-1331: Add MC e2e testing workflow for SRE operators (RMO, AVO)#82850
dustman9000 wants to merge 1 commit into
openshift:mainfrom
dustman9000:rmo-mc-e2e

Conversation

@dustman9000

@dustman9000 dustman9000 commented Aug 3, 2026

Copy link
Copy Markdown
Member

Summary

  • Add rosa-operator-mc-e2e workflow: provisions HCP on CI sector, fetches MC kubeconfig, runs operator e2e against the Management Cluster
  • Add rosa-operator-mc-e2e-setup ref: bridges MC kubeconfig path for the operator e2e step
  • Add rosa-hcp-mc-e2e weekly periodic for both RMO and AVO targeting the rosa-e2e sector
  • Update cleanup step with namespace fallback for MC mode (operator is fleet-managed via MCC/PKO)

RMO runs RHOBS Synthetic Monitoring tests (HCP probe lifecycle). AVO runs CEL validation tests (VpcEndpoint/VpcEndpointTemplate CRD validation). Both operators auto-detect MC mode: RMO checks for the HCP CRD, AVO tests don't need the VpcEndpointTemplate controller.

Jira: https://redhat.atlassian.net/browse/ROSAENG-1331

Test plan

  • make jobs passes (verified locally)
  • /pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e
  • /pj-rehearse periodic-ci-openshift-aws-vpce-operator-main-rosa-hcp-mc-e2e
  • HCP provisions on rosa-e2e sector (maintenance mode, shard called directly)
  • MC kubeconfig fetched successfully
  • RMO RHOBS Synthetic Monitoring e2e tests pass against MC
  • AVO CEL validation e2e tests pass against MC
  • HCP deprovision cleans up

@openshift-ci-robot

openshift-ci-robot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

@dustman9000: This pull request references ROSAENG-1331 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set.

Details

In response to this:

Summary

  • Add rosa-operator-mc-e2e workflow: provisions HCP on CI sector, fetches MC kubeconfig, runs operator e2e against the Management Cluster
  • Add rosa-operator-mc-e2e-setup ref: bridges MC kubeconfig path for the operator e2e step
  • Add rosa-hcp-mc-e2e weekly periodic to RMO ci-operator config targeting the rosa-e2e sector
  • Update cleanup step to skip uninstall in MC mode (operator is fleet-managed via MCC/PKO)

The workflow reuses existing rosa-aws-sts-hcp-provision and rosa-cluster-credentials-hypershift-mgmt steps. No backplane or intranet capability needed since MC kubeconfig comes from the OCM API credentials endpoint.

Jira: https://redhat.atlassian.net/browse/ROSAENG-1331

Test plan

  • make jobs passes (verified locally)
  • /pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e
  • HCP provisions on rosa-e2e sector (maintenance mode, shard called directly)
  • MC kubeconfig fetched successfully
  • RMO RHOBS Synthetic Monitoring e2e tests pass against MC
  • HCP deprovision cleans up

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 openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Aug 3, 2026
@coderabbitai

coderabbitai Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Adds a scheduled ROSA hosted-control-plane management-cluster E2E job. The workflow provisions an HCP, prepares management-cluster credentials, runs operator tests, performs best-effort cleanup, and supports operator log collection with a namespace fallback.

Changes

ROSA management-cluster E2E

Layer / File(s) Summary
Workflow and kubeconfig setup
ci-operator/step-registry/rosa/operator/mc-e2e/...
Adds the workflow, kubeconfig setup step, connection verification, E2E execution, teardown chains, ownership, and metadata.
Scheduled job integration
ci-operator/config/openshift/route-monitor-operator/openshift-route-monitor-operator-master.yaml
Schedules weekly ROSA MC E2E runs with the HCP profile, staging OCM, OpenShift 4.21, us-west-2, and RHOBS Synthetic Monitoring tests.
Cleanup namespace fallback
ci-operator/step-registry/rosa/operator/cleanup/rosa-operator-cleanup-commands.sh
Derives OPERATOR_NAMESPACE as openshift-${OPERATOR_NAME} when the namespace is absent.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

Suggested labels: rehearsals-ack

Suggested reviewers: aliceh, anispate

Sequence Diagram(s)

sequenceDiagram
  participant ScheduledJob
  participant HCPWorkflow
  participant ManagementCluster
  participant OperatorE2E
  participant Cleanup
  ScheduledJob->>HCPWorkflow: start weekly ROSA MC E2E workflow
  HCPWorkflow->>ManagementCluster: provision HCP and fetch credentials
  ManagementCluster->>OperatorE2E: provide verified kubeconfig
  OperatorE2E-->>HCPWorkflow: run operator E2E tests
  HCPWorkflow->>Cleanup: perform best-effort teardown
Loading

Important

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

❌ Failed checks (1 error)

Check name Status Explanation Resolution
No-Sensitive-Data-In-Logs ❌ Error The new setup script logs oc whoami --show-server, which emits the MC API server hostname; oc whoami also emits the authenticated identity into job logs. Remove both raw identity/server output commands, or redact them; log only a fixed access-success message and review artifact log collection for secret-bearing output.
✅ Passed checks (14 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
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 The PR adds no Ginkgo It/Describe/Context/When test titles; its only test selector is the static GINKGO_FOCUS: RHOBS Synthetic Monitoring.
Test Structure And Quality ✅ Passed The PR changes CI YAML, shell setup/cleanup, and metadata only; it adds no Ginkgo test implementation or It blocks to assess.
Microshift Test Compatibility ✅ Passed No Ginkgo test source was added or modified; the 10 changed files are CI configuration, metadata, and shell scripts, so MicroShift test compatibility is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed The patch adds only CI YAML, metadata, ownership, and shell support files; it adds no Ginkgo test declarations or changed test source requiring SNO compatibility review.
Topology-Aware Scheduling Compatibility ✅ Passed The PR changes only CI workflows, generated Prow configuration, metadata, and shell setup/cleanup; it adds no deployment/controller code or topology scheduling constraints.
Ote Binary Stdout Contract ✅ Passed The PR changes CI YAML, metadata, and shell wrappers only; it adds no OTE main/suite source, klog setup, or process-level fmt stdout write.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed The PR adds CI workflow, YAML, metadata, and shell files only; it adds no Ginkgo test declarations or IPv4/public-network test logic.
No-Weak-Crypto ✅ Passed The added workflow, YAML, and shell code contains no MD5, SHA1, DES, RC4, 3DES, Blowfish, ECB, custom crypto, or secret/token comparisons.
Container-Privileges ✅ Passed The added workflow, step references, generated periodic Job, and cleanup script contain no privileged, host namespace, SYS_ADMIN, privilege-escalation, or explicit root settings.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly identifies the new Management Cluster end-to-end testing workflow for SRE operators.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Aug 3, 2026
@openshift-ci
openshift-ci Bot requested review from aliceh and anispate August 3, 2026 22:57

@coderabbitai coderabbitai Bot left a comment

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.

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/rosa/operator/mc-e2e/setup/rosa-operator-mc-e2e-setup-commands.sh`:
- Line 21: Update the connection log around the oc whoami invocation to stop
printing the Management Cluster API URL; replace the command output with a
generic confirmation that the Management Cluster connection succeeded.
🪄 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: b31e44cf-0a6f-4e25-b93e-726b2e4cf820

📥 Commits

Reviewing files that changed from the base of the PR and between 42cb024 and 65b056c.

⛔ Files ignored due to path filters (1)
  • ci-operator/jobs/openshift/route-monitor-operator/openshift-route-monitor-operator-master-periodics.yaml is excluded by !ci-operator/jobs/**
📒 Files selected for processing (7)
  • ci-operator/config/openshift/route-monitor-operator/openshift-route-monitor-operator-master.yaml
  • ci-operator/step-registry/rosa/operator/cleanup/rosa-operator-cleanup-commands.sh
  • ci-operator/step-registry/rosa/operator/mc-e2e/OWNERS
  • ci-operator/step-registry/rosa/operator/mc-e2e/rosa-operator-mc-e2e-workflow.yaml
  • ci-operator/step-registry/rosa/operator/mc-e2e/setup/OWNERS
  • ci-operator/step-registry/rosa/operator/mc-e2e/setup/rosa-operator-mc-e2e-setup-commands.sh
  • ci-operator/step-registry/rosa/operator/mc-e2e/setup/rosa-operator-mc-e2e-setup-ref.yaml

cp "${MC_KUBECONFIG}" "${SHARED_DIR}/kubeconfig"
log "MC kubeconfig set for operator e2e"
KUBECONFIG="${SHARED_DIR}/kubeconfig" oc whoami
log "Connected to MC: $(KUBECONFIG="${SHARED_DIR}/kubeconfig" oc whoami --show-server)"

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.

🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

Do not print the Management Cluster API URL.

oc whoami --show-server writes the cluster URL to the CI log. Replace this message with a generic connection confirmation.

Proposed fix
-log "Connected to MC: $(KUBECONFIG="${SHARED_DIR}/kubeconfig" oc whoami --show-server)"
+log "Connected to MC"

As per coding guidelines, step registry command scripts must not echo cluster URLs.

📝 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
log "Connected to MC: $(KUBECONFIG="${SHARED_DIR}/kubeconfig" oc whoami --show-server)"
log "Connected to MC"
🤖 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/rosa/operator/mc-e2e/setup/rosa-operator-mc-e2e-setup-commands.sh`
at line 21, Update the connection log around the oc whoami invocation to stop
printing the Management Cluster API URL; replace the command output with a
generic confirmation that the Management Cluster connection succeeded.

Source: Coding guidelines

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@dustman9000

Copy link
Copy Markdown
Member Author

/retest

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@dustman9000

Copy link
Copy Markdown
Member Author

/retest ci/rehearse/periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-ci

openshift-ci Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

@dustman9000: The /retest command does not accept any targets.
The following commands are available to trigger required jobs:

/test boskos-config
/test boskos-config-generation
/test check-gh-automation
/test check-gh-automation-tide
/test check-trigger-trusted-apps
/test ci-operator-config
/test ci-operator-config-metadata
/test ci-operator-registry
/test ci-secret-bootstrap-config-validation
/test ci-testgrid-allow-list
/test cluster-manifest-verifier
/test clusterimageset-validate
/test config
/test core-valid
/test generated-config
/test generated-dashboards
/test hyperfleet-risk-scorer-test
/test image-mirroring-config-validation
/test jira-lifecycle-config
/test jira-solver-eval-images
/test jira-solver-eval-jira-solver-eval
/test labels
/test openshift-image-mirror-mappings
/test ordered-prow-config
/test owners
/test pr-reminder-config
/test prow-config
/test prow-config-filenames
/test prow-config-semantics
/test pylint
/test release-config
/test release-controller-config
/test rover-groups-config-validation
/test secret-generator-config-valid
/test services-valid
/test stackrox-stackrox-stackrox-stackrox-check
/test step-registry-metadata
/test step-registry-shellcheck
/test sync-rover-groups
/test verified-config
/test yamllint

The following commands are available to trigger optional jobs:

/test check-cluster-profiles-config

Use /test all to run the following jobs that were automatically triggered:

pull-ci-openshift-release-check-gh-automation
pull-ci-openshift-release-main-ci-operator-config
pull-ci-openshift-release-main-ci-operator-config-metadata
pull-ci-openshift-release-main-ci-operator-registry
pull-ci-openshift-release-main-config
pull-ci-openshift-release-main-core-valid
pull-ci-openshift-release-main-generated-config
pull-ci-openshift-release-main-ordered-prow-config
pull-ci-openshift-release-main-owners
pull-ci-openshift-release-main-prow-config-filenames
pull-ci-openshift-release-main-prow-config-semantics
pull-ci-openshift-release-main-release-controller-config
pull-ci-openshift-release-main-step-registry-metadata
pull-ci-openshift-release-main-step-registry-shellcheck
pull-ci-openshift-release-openshift-image-mirror-mappings
pull-ci-openshift-release-yamllint
Details

In response to this:

/retest ci/rehearse/periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

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.

@dustman9000 dustman9000 changed the title ROSAENG-1331: Add MC e2e testing workflow for SRE operators ROSAENG-1331: Add MC e2e testing workflow for SRE operators (RMO, AVO) Aug 4, 2026
@openshift-ci

openshift-ci Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: dustman9000

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

The pull request process is described 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

Add rosa-operator-mc-e2e workflow that provisions an HCP on a CI sector,
fetches the MC kubeconfig, and runs operator e2e tests against the
Management Cluster. Add weekly periodics for both RMO (RHOBS Synthetic
Monitoring tests) and AVO (CEL validation tests) on the rosa-e2e sector.

Reuses existing provision/deprovision chains with a bridge step to copy
the MC kubeconfig. No operator install/cleanup since operators are
fleet-managed via MCC/PKO.
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@dustman9000: 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
pull-ci-openshift-ocm-agent-operator-master-rosa-sts-e2e openshift/ocm-agent-operator presubmit Registry content changed
pull-ci-openshift-ocm-agent-operator-master-osd-gcp-e2e openshift/ocm-agent-operator presubmit Registry content changed
pull-ci-openshift-aws-vpce-operator-main-coverage openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-aws-vpce-operator-main-e2e-binary-build-success openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-aws-vpce-operator-main-images openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-aws-vpce-operator-main-lint openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-aws-vpce-operator-main-rosa-sts-e2e openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-aws-vpce-operator-main-test openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-aws-vpce-operator-main-validate openshift/aws-vpce-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-coverage openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-e2e-binary-build-success openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-generate openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-images openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-lint openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-osd-gcp-e2e openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-rosa-sts-e2e openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-route-monitor-operator-master-test openshift/route-monitor-operator presubmit Ci-operator config changed
pull-ci-openshift-managed-upgrade-operator-master-rosa-sts-e2e openshift/managed-upgrade-operator presubmit Registry content changed
pull-ci-openshift-managed-upgrade-operator-master-osd-gcp-e2e openshift/managed-upgrade-operator presubmit Registry content changed
pull-ci-openshift-configure-alertmanager-operator-master-rosa-sts-e2e openshift/configure-alertmanager-operator presubmit Registry content changed
pull-ci-openshift-configure-alertmanager-operator-master-osd-gcp-e2e openshift/configure-alertmanager-operator presubmit Registry content changed
pull-ci-openshift-splunk-forwarder-operator-master-rosa-sts-e2e openshift/splunk-forwarder-operator presubmit Registry content changed
pull-ci-openshift-splunk-forwarder-operator-master-osd-gcp-e2e openshift/splunk-forwarder-operator presubmit Registry content changed
periodic-ci-openshift-configure-alertmanager-operator-master-osd-gcp-e2e-promotion-stage N/A periodic Registry content changed
periodic-ci-openshift-aws-vpce-operator-main-rosa-sts-e2e-promotion-int N/A periodic Ci-operator config changed

A total of 48 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs.

A full list of affected jobs can be found here

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.

@openshift-ci

openshift-ci Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

@dustman9000: The following test 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-route-monitor-operator-master-rosa-hcp-mc-e2e a31e8bf link unknown /pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

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.

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@dustman9000

Copy link
Copy Markdown
Member Author

/pj-rehearse periodic-ci-openshift-route-monitor-operator-master-rosa-hcp-mc-e2e

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

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

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants