Skip to content

OSAC-793: add nightly full-installation vmaas E2E with Slack notification#79378

Open
omer-vishlitzky wants to merge 1 commit into
openshift:mainfrom
omer-vishlitzky:osac-867-nightly-vmaas
Open

OSAC-793: add nightly full-installation vmaas E2E with Slack notification#79378
omer-vishlitzky wants to merge 1 commit into
openshift:mainfrom
omer-vishlitzky:osac-867-nightly-vmaas

Conversation

@omer-vishlitzky
Copy link
Copy Markdown
Contributor

@omer-vishlitzky omer-vishlitzky commented May 17, 2026

Summary

Adds a nightly periodic job that installs OSAC with all component images
overridden to their latest CI-built versions
, runs all vmaas E2E tests, and
sends results to Slack.

Unlike the existing 8 periodic jobs (which run one test each with pinned
installer versions), this job:

  1. Swaps fulfillment-service, osac-operator, and osac-aap to their latest
    CI images before installation
  2. Runs all vmaas tests in a single job via make test-vmaas
  3. Sends a Slack notification with pass/fail, deployed versions, and Prow link

New step-registry components

Component Purpose
osac-project-installer-all-latest Installs OSAC with all images swapped to latest
osac-project-baremetal-test-all Runs make test-vmaas (all tests), reports versions
osac-project-ofcir-baremetal-nightly Nightly workflow chaining install + test + notify
osac-project-notify Slack notification (from PR #79364, will rebase when merged)

Removed dead code

  • osac-project-installer-component — single-image swap, replaced by all-latest
  • osac-project-ofcir-baremetal-component — workflow that used it, unused by any config

Flow

ofcir-acquire → assisted-ofcir-setup → assisted-common-pre
  → osac-project-installer-all-latest (swap all images, run setup.sh)
  → osac-project-baremetal-test-all (make test-vmaas)
  → osac-project-notify → gather → release

Cluster specs

SNO with 64 GB RAM, 2x200 GB disks, 24 vCPUs, CNV + LVM, OCP 4.20.
Runs nightly at 3am UTC.

Test plan

  • Rehearse via /test nightly-e2e-vmaas
  • Verify all component images are swapped to latest in the installation logs
  • Verify Slack notification with pass/fail + versions

Summary

This PR updates the OpenShift CI configuration (openshift/release) for the OSAC project to add a nightly, full-installation vmaas E2E pipeline. The new periodic job provisions an assisted baremetal cluster, installs OSAC with multiple component images overridden to the latest CI-built artifacts, runs the full vmaas E2E suite, collects artifacts (JUnit), and sends a Slack notification that includes pass/fail, deployed component versions, and a Prow logs link.

What changed (practical terms)

  • New periodic job: nightly-e2e-vmaas (cron: 0 3 * * *) using packet-assisted cluster_profile and OPENSHIFT_VERSION=4.20. Targets a full-installation SNO (CNV + LVM) with the supplied assisted config (single-master/full-installation sizing: 64 GiB RAM, 2×200 GB disks, 24 vCPUs).
  • Exposes latest CI images in ci-operator base_images for fulfillment-service, osac-aap, and osac-operator so the installer can swap them to the latest CI-built images before installation.
  • Adds a consolidated nightly workflow that provisions resources, runs assisted setup and common pre-steps, performs an all-latest install, executes the full vmaas test suite, notifies Slack, gathers artifacts, and releases resources.

New CI step-registry components

  • osac-project-installer-all-latest
    • Installer step that runs on the remote CI machine and overrides multiple images before running scripts/setup.sh: FULFILLMENT_IMAGE, OPERATOR_IMAGE, and AAP_IMAGE (AAP EE image + branch override). Mounts AAP license and pull-secret. Installer step timeout ≈ 3h.
  • osac-project-baremetal-test-all
    • Remote test step that SSHes to the ci_machine, writes deployed versions into SHARED_DIR/versions.txt by inspecting deployments, runs the vmaas suite inside the test image via podman (make test-vmaas) under a timed SSH session (≈90m remote run, 2h step timeout), and copies junit_vmaas.xml back to ARTIFACT_DIR on exit.
  • osac-project-ofcir-baremetal-nightly
    • New nightly workflow wiring: ofcir-acquire → assisted-ofcir-setup → assisted-common-pre → osac-project-installer-all-latest → osac-project-baremetal-test-all → osac-project-notify → osac-project-gather → ofcir-gather → ofcir-release. Workflow allows best-effort post steps.
  • osac-project-notify
    • Best-effort Slack notifier (5m timeout). Runs only for periodic jobs, reads a Vault-mounted webhook credential, posts PASSED/FAILED (emoji), a Prow “View logs” link, and includes the contents of SHARED_DIR/versions.txt when present.

Removals / consolidations

  • Removes the older single-component installer step/script and an unused component workflow in favor of the consolidated all-latest installer and the single nightly workflow.
  • Cleans up/updates OWNERS metadata for the new/updated step refs.

Runtime details

  • Cluster profile: packet-assisted (assisted_large_el9), single-master/full-installation with CNV + LVM.
  • OpenShift version: 4.20.
  • Timeouts: installer step ≈ 3h; test step ≈ 2h; notify step ≈ 5m.
  • Step resource requests included (e.g., 100m CPU, 200Mi memory) for components such as test and notify steps.

Artifacts & reporting

  • JUnit XML (junit_vmaas.xml) is collected from the remote test run into ARTIFACT_DIR for Prow reporting.
  • Deployed component versions are written to SHARED_DIR/versions.txt and appended to the Slack message when present.
  • Slack webhook is loaded from Vault (test-credentials / osac-slack-webhook).

Verification / test plan

  • Rehearse with: /test nightly-e2e-vmaas
  • Verify installer logs show fulfillment-service, osac-operator, and osac-aap were swapped to the latest CI images.
  • Verify Slack notification contains pass/fail, deployed versions, and a Prow logs link.
  • The notify step currently depends on a separate PR (referenced in the branch comments) and will be rebased when that PR is merged.

Bot feedback / notes

  • openshift-ci-robot posted automated comments confirming PR references to Jira issues OSAC-867 and OSAC-793; it also warned the referenced Jira issues lack the expected target version ("5.0.0") for the target branch.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label May 17, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented May 17, 2026

@omer-vishlitzky: This pull request references OSAC-867 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 task to target the "5.0.0" version, but no target version was set.

Details

In response to this:

Summary

Adds a nightly periodic job that installs OSAC with all component images
overridden to their latest CI-built versions
, runs all vmaas E2E tests, and
sends results to Slack.

Unlike the existing 8 periodic jobs (which run one test each with pinned
installer versions), this job:

  1. Swaps fulfillment-service, osac-operator, and osac-aap to their latest
    CI images before installation
  2. Runs all vmaas tests in a single job via make test-vmaas
  3. Sends a Slack notification with pass/fail, deployed versions, and Prow link

New step-registry components

Component Purpose
osac-project-installer-all-latest Installs OSAC with all images swapped to latest
osac-project-baremetal-test-all Runs make test-vmaas (all tests), reports versions
osac-project-ofcir-baremetal-nightly Nightly workflow chaining install + test + notify
osac-project-notify Slack notification (from PR #79364, will rebase when merged)

Removed dead code

  • osac-project-installer-component — single-image swap, replaced by all-latest
  • osac-project-ofcir-baremetal-component — workflow that used it, unused by any config

Flow

ofcir-acquire → assisted-ofcir-setup → assisted-common-pre
 → osac-project-installer-all-latest (swap all images, run setup.sh)
 → osac-project-baremetal-test-all (make test-vmaas)
 → osac-project-notify → gather → release

Cluster specs

SNO with 64 GB RAM, 2x200 GB disks, 24 vCPUs, CNV + LVM, OCP 4.20.
Runs nightly at 3am UTC.

Test plan

  • Rehearse via /test nightly-e2e-vmaas
  • Verify all component images are swapped to latest in the installation logs
  • Verify Slack notification with pass/fail + versions

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.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 17, 2026

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 nightly OSAC baremetal workflow and supporting step-registry entries: an all-latest installer step, a remote baremetal test-all step that collects artifacts and component versions, a Slack notify step, OWNER updates, and test-infra config including base image mappings and a cron-scheduled nightly job.

Changes

Nightly E2E Testing Workflow

Layer / File(s) Summary
Test configuration and scheduling
ci-operator/config/osac-project/osac-test-infra/osac-project-osac-test-infra-main.yaml
Base image mappings extended with fulfillment-service, osac-aap, and osac-operator; added nightly-e2e-vmaas cron job referencing the nightly workflow and setting OPENSHIFT_VERSION=4.20.
Baremetal test execution
ci-operator/step-registry/osac-project/baremetal/test-all/OWNERS, ci-operator/step-registry/osac-project/baremetal/test-all/osac-project-baremetal-test-all-commands.sh, ci-operator/step-registry/osac-project/baremetal/test-all/osac-project-baremetal-test-all-ref.metadata.json, ci-operator/step-registry/osac-project/baremetal/test-all/osac-project-baremetal-test-all-ref.yaml
New step and script run vmaas E2E on a remote ci_machine, capture deployed component images to versions.txt, trap and scp JUnit artifacts back to ARTIFACT_DIR, and write pass/fail status to ${SHARED_DIR}/test-result.
All-latest installer setup step
ci-operator/step-registry/osac-project/installer/all-latest/OWNERS, ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-commands.sh, ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-ref.metadata.json, ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-ref.yaml
New installer step and commands decode license, run readiness SSH actions (storage class annotation, HCO availability), apply network attachment, run installer container with pinned kustomize, and override fulfillment-service/osac-operator/osac-aap images to latest CI-built versions before running setup.sh.
Slack notification step
ci-operator/step-registry/osac-project/notify/OWNERS, ci-operator/step-registry/osac-project/notify/osac-project-notify-commands.sh, ci-operator/step-registry/osac-project/notify/osac-project-notify-ref.metadata.json, ci-operator/step-registry/osac-project/notify/osac-project-notify-ref.yaml
New notify step reads Slack webhook from Vault, composes a JSON message with job result, emoji, Prow log link, and optional component versions, and posts it to the webhook.
Nightly workflow orchestration
ci-operator/step-registry/osac-project/ofcir/baremetal/nightly/OWNERS, ci-operator/step-registry/osac-project/ofcir/baremetal/nightly/osac-project-ofcir-baremetal-nightly-workflow.metadata.json, ci-operator/step-registry/osac-project/ofcir/baremetal/nightly/osac-project-ofcir-baremetal-nightly-workflow.yaml
Adds the osac-project-ofcir-baremetal-nightly workflow wiring pre (ofcir-acquire, assisted-ofcir-setup, assisted-common-pre), test (osac-project-installer-all-latest, osac-project-baremetal-test-all), and post (osac-project-notify, osac-project-gather, ofcir-gather, ofcir-release) steps with best-effort post behavior and cluster profile settings.
Component reference cleanup
ci-operator/step-registry/osac-project/installer/component/OWNERS, ci-operator/step-registry/osac-project/ofcir/baremetal/component/*
Removed/deprecated component-specific OWNERS and component workflow metadata/YAML in favor of the new all-latest installer and nightly workflow wiring.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~22 minutes

Suggested labels

lgtm, rehearsals-ack

🚥 Pre-merge checks | ✅ 11 | ❌ 1

❌ Failed checks (1 warning)

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.
✅ Passed checks (11 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: adding a nightly periodic job for full-installation vmaas E2E testing with Slack notifications. It is specific, clear, and directly reflects the primary objective of the changeset.
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 introduces only CI/CD configuration files (YAML, shell scripts, JSON metadata, OWNERS files). No Ginkgo test code is added or modified. The custom check is not applicable.
Test Structure And Quality ✅ Passed This PR adds CI/CD configuration (YAML, shell scripts, metadata files) with no Ginkgo test code. The custom check is not applicable.
Microshift Test Compatibility ✅ Passed PR adds CI/CD infrastructure, not Ginkgo e2e tests. Custom check targets Ginkgo test definitions which are absent. Tests run via containerized make test-vmaas.
Single Node Openshift (Sno) Test Compatibility ✅ Passed No new Ginkgo e2e tests are being added. PR contains only CI/CD infrastructure (YAML configs, shell scripts, OWNERS). Orchestrates existing tests via make test-vmaas. Check not applicable.
Topology-Aware Scheduling Compatibility ✅ Passed PR adds CI/CD test infrastructure (ci-operator configs, step-registry YAML, bash scripts) with no deployment manifests, operator code, or scheduling constraints. Check is not applicable.
Ote Binary Stdout Contract ✅ Passed OTE Stdout Contract check is not applicable to this PR. PR modifies only CI/CD configuration (YAML, JSON, Bash) and not any Go test binaries or OTE process-level code.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed No new Ginkgo e2e tests are added in this PR. The PR only adds CI orchestration shell scripts and step registry configurations. Actual tests are in osac-test-infra repository. Check 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

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

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 17, 2026
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: 6

🤖 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/osac-project/baremetal/test-all/osac-project-baremetal-test-all-ref.yaml`:
- Around line 21-23: The env var documentation for E2E_CLUSTER_TEMPLATE
currently references “CaaS tests” but this step is for vmaas tests; update the
documentation string for E2E_CLUSTER_TEMPLATE (and the other similar entries
around it) to reference “vmaas tests” (or otherwise match the step routing) so
the env var description aligns with the step’s test-type; locate occurrences of
E2E_CLUSTER_TEMPLATE and the adjacent variable docs and replace “CaaS tests”
with “vmaas tests” (or a consistent vmaas-specific phrase).

In
`@ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-commands.sh`:
- Around line 40-47: The podman run invocation that starts the installer
container does not export required environment variables (FULFILLMENT_IMAGE,
OPERATOR_IMAGE, AAP_IMAGE, and E2E_KUSTOMIZE_OVERLAY) into the container,
causing failures when the in-container script (run with set -u) references them;
update the podman run commands (the block that constructs the container
invocation and the similar block around lines 53-63) to pass these variables via
-e FULFILLMENT_IMAGE=${FULFILLMENT_IMAGE} -e OPERATOR_IMAGE=${OPERATOR_IMAGE} -e
AAP_IMAGE=${AAP_IMAGE} and ensure E2E_KUSTOMIZE_OVERLAY is also exported with -e
E2E_KUSTOMIZE_OVERLAY=${E2E_KUSTOMIZE_OVERLAY} so the installer script can read
them inside the container.
- Around line 21-39: The remote SSH heredoc invoked by the ssh command (ssh -F
"${SHARED_DIR}/ssh_config" ci_machine bash - << EOF|& sed ...) does not enable
strict mode; insert a single line with set -euo pipefail as the first command
inside that heredoc (immediately after the heredoc start and before export
KUBECONFIG) so that commands like export KUBECONFIG, oc annotate sc lvms-vg1, oc
wait --for=condition=Available and the subsequent cat <<NADEOF block will fail
fast on errors, unset variables, or pipeline failures.

In
`@ci-operator/step-registry/osac-project/notify/osac-project-notify-commands.sh`:
- Around line 38-40: The curl POST currently uses "curl -s" which neither fails
on non-2xx nor has timeouts; update the curl invocation that posts "${MESSAGE}"
to "${WEBHOOK_URL}" to use error-aware and bounded options (e.g. add --fail and
--show-error and sensible timeouts like --connect-timeout and --max-time) and
ensure the script checks curl's exit status and exits non‑zero on failure so the
CI step fails fast on notification errors.
- Around line 3-4: The script currently enables nounset and pipefail via the
lines "set -o nounset" and "set -o pipefail" but omits -e; update the top of the
step script so it uses full strict mode by replacing those with a single strict
set invocation (enable -e, -u and pipefail) so command failures cannot be
ignored; ensure this change is placed at the beginning of the
osac-project-notify-commands.sh script where "set -o nounset" and "set -o
pipefail" currently appear.
- Around line 33-40: The current code builds MESSAGE via shell string
interpolation and embeds it directly into the curl --data JSON string, which can
break if MESSAGE contains quotes or other JSON-sensitive characters; update the
notify step to JSON-encode the payload instead of manual interpolation by
replacing the inline --data "{\"text\":\"${MESSAGE}\"}" pattern with a safe
encoder (e.g., use jq, python -c 'import json,sys; print(json.dumps({...}))', or
printf + jq) to produce a properly escaped JSON object and then pass that
encoded payload to curl (keeping the existing MESSAGE, WEBHOOK_URL and curl
invocation but feeding curl the encoded JSON via --data `@-` or a temp file).
🪄 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: d1c7d8e7-65de-4640-9cf4-99eeb069d3d1

📥 Commits

Reviewing files that changed from the base of the PR and between 16e4c03 and f2407dd.

⛔ Files ignored due to path filters (1)
  • ci-operator/jobs/osac-project/osac-test-infra/osac-project-osac-test-infra-main-periodics.yaml is excluded by !ci-operator/jobs/**
📒 Files selected for processing (21)
  • ci-operator/config/osac-project/osac-test-infra/osac-project-osac-test-infra-main.yaml
  • ci-operator/step-registry/osac-project/baremetal/test-all/OWNERS
  • ci-operator/step-registry/osac-project/baremetal/test-all/osac-project-baremetal-test-all-commands.sh
  • ci-operator/step-registry/osac-project/baremetal/test-all/osac-project-baremetal-test-all-ref.metadata.json
  • ci-operator/step-registry/osac-project/baremetal/test-all/osac-project-baremetal-test-all-ref.yaml
  • ci-operator/step-registry/osac-project/installer/all-latest/OWNERS
  • ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-commands.sh
  • ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-ref.metadata.json
  • ci-operator/step-registry/osac-project/installer/all-latest/osac-project-installer-all-latest-ref.yaml
  • ci-operator/step-registry/osac-project/installer/component/OWNERS
  • ci-operator/step-registry/osac-project/installer/component/osac-project-installer-component-commands.sh
  • ci-operator/step-registry/osac-project/notify/OWNERS
  • ci-operator/step-registry/osac-project/notify/osac-project-notify-commands.sh
  • ci-operator/step-registry/osac-project/notify/osac-project-notify-ref.metadata.json
  • ci-operator/step-registry/osac-project/notify/osac-project-notify-ref.yaml
  • ci-operator/step-registry/osac-project/ofcir/baremetal/component/OWNERS
  • ci-operator/step-registry/osac-project/ofcir/baremetal/component/osac-project-ofcir-baremetal-component-workflow.metadata.json
  • ci-operator/step-registry/osac-project/ofcir/baremetal/component/osac-project-ofcir-baremetal-component-workflow.yaml
  • ci-operator/step-registry/osac-project/ofcir/baremetal/nightly/OWNERS
  • ci-operator/step-registry/osac-project/ofcir/baremetal/nightly/osac-project-ofcir-baremetal-nightly-workflow.metadata.json
  • ci-operator/step-registry/osac-project/ofcir/baremetal/nightly/osac-project-ofcir-baremetal-nightly-workflow.yaml
💤 Files with no reviewable changes (5)
  • ci-operator/step-registry/osac-project/ofcir/baremetal/component/osac-project-ofcir-baremetal-component-workflow.metadata.json
  • ci-operator/step-registry/osac-project/installer/component/OWNERS
  • ci-operator/step-registry/osac-project/ofcir/baremetal/component/OWNERS
  • ci-operator/step-registry/osac-project/ofcir/baremetal/component/osac-project-ofcir-baremetal-component-workflow.yaml
  • ci-operator/step-registry/osac-project/installer/component/osac-project-installer-component-commands.sh

Comment on lines +21 to +23
- name: E2E_CLUSTER_TEMPLATE
default: "osac.templates.ocp_4_17_small"
documentation: The cluster template to use for CaaS tests
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 | 🟡 Minor | ⚡ Quick win

Fix test-type mismatch in env var documentation.

Line 23 says E2E_CLUSTER_TEMPLATE is for “CaaS tests”, but this step is documented/routed as vmaas tests. Please align wording to avoid operator confusion.

Also applies to: 25-26

🤖 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/osac-project/baremetal/test-all/osac-project-baremetal-test-all-ref.yaml`
around lines 21 - 23, The env var documentation for E2E_CLUSTER_TEMPLATE
currently references “CaaS tests” but this step is for vmaas tests; update the
documentation string for E2E_CLUSTER_TEMPLATE (and the other similar entries
around it) to reference “vmaas tests” (or otherwise match the step routing) so
the env var description aligns with the step’s test-type; locate occurrences of
E2E_CLUSTER_TEMPLATE and the adjacent variable docs and replace “CaaS tests”
with “vmaas tests” (or a consistent vmaas-specific phrase).

Comment on lines +40 to +47
podman run --authfile /root/pull-secret --rm --network=host \
-v \${KUBECONFIG}:/root/.kube/config:z \
-v /root/pull-secret:/installer/overlays/${E2E_KUSTOMIZE_OVERLAY}/files/quay-pull-secret.json:z \
-v /tmp/license.zip:/installer/overlays/${E2E_KUSTOMIZE_OVERLAY}/files/license.zip:z \
-e INSTALLER_NAMESPACE=${E2E_NAMESPACE} \
-e INSTALLER_KUSTOMIZE_OVERLAY=${E2E_KUSTOMIZE_OVERLAY} \
-e INSTALLER_VM_TEMPLATE=${E2E_VM_TEMPLATE} \
${OSAC_INSTALLER_IMAGE} sh -c '
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 | 🔴 Critical | ⚡ Quick win

Pass all referenced override vars into the installer container.

The in-container script uses FULFILLMENT_IMAGE, OPERATOR_IMAGE, AAP_IMAGE, and E2E_KUSTOMIZE_OVERLAY, but they are not passed via podman run -e. With set -u enabled inside the container, this will fail before setup completes.

Proposed fix
 podman run --authfile /root/pull-secret --rm --network=host \
 -v ${KUBECONFIG}:/root/.kube/config:z \
 -v /root/pull-secret:/installer/overlays/${E2E_KUSTOMIZE_OVERLAY}/files/quay-pull-secret.json:z \
 -v /tmp/license.zip:/installer/overlays/${E2E_KUSTOMIZE_OVERLAY}/files/license.zip:z \
 -e INSTALLER_NAMESPACE=${E2E_NAMESPACE} \
 -e INSTALLER_KUSTOMIZE_OVERLAY=${E2E_KUSTOMIZE_OVERLAY} \
 -e INSTALLER_VM_TEMPLATE=${E2E_VM_TEMPLATE} \
+-e FULFILLMENT_IMAGE=${FULFILLMENT_IMAGE} \
+-e OPERATOR_IMAGE=${OPERATOR_IMAGE} \
+-e AAP_IMAGE=${AAP_IMAGE} \
+-e E2E_KUSTOMIZE_OVERLAY=${E2E_KUSTOMIZE_OVERLAY} \
 ${OSAC_INSTALLER_IMAGE} sh -c '

Also applies to: 53-63

🤖 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/osac-project/installer/all-latest/osac-project-installer-all-latest-commands.sh`
around lines 40 - 47, The podman run invocation that starts the installer
container does not export required environment variables (FULFILLMENT_IMAGE,
OPERATOR_IMAGE, AAP_IMAGE, and E2E_KUSTOMIZE_OVERLAY) into the container,
causing failures when the in-container script (run with set -u) references them;
update the podman run commands (the block that constructs the container
invocation and the similar block around lines 53-63) to pass these variables via
-e FULFILLMENT_IMAGE=${FULFILLMENT_IMAGE} -e OPERATOR_IMAGE=${OPERATOR_IMAGE} -e
AAP_IMAGE=${AAP_IMAGE} and ensure E2E_KUSTOMIZE_OVERLAY is also exported with -e
E2E_KUSTOMIZE_OVERLAY=${E2E_KUSTOMIZE_OVERLAY} so the installer script can read
them inside the container.

Comment thread ci-operator/step-registry/osac-project/notify/osac-project-notify-commands.sh Outdated
Comment on lines +33 to +40
MESSAGE="${EMOJI} *${JOB_NAME}* — ${RESULT}\n<${JOB_URL}|View logs>"
if [[ -n "${VERSIONS}" ]]; then
MESSAGE="${MESSAGE}\n\n*Versions:*\n\`\`\`${VERSIONS}\n\`\`\`"
fi

curl -s -X POST -H 'Content-type: application/json' \
--data "{\"text\":\"${MESSAGE}\"}" \
"${WEBHOOK_URL}"
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 manual JSON interpolation for Slack payload text.

MESSAGE content can include characters that break JSON encoding; build payload with a JSON encoder instead of string interpolation.

Suggested fix
-MESSAGE="${EMOJI} *${JOB_NAME}* — ${RESULT}\n<${JOB_URL}|View logs>"
+MESSAGE="${EMOJI} *${JOB_NAME}* — ${RESULT}\n<${JOB_URL}|View logs>"
 if [[ -n "${VERSIONS}" ]]; then
     MESSAGE="${MESSAGE}\n\n*Versions:*\n\`\`\`${VERSIONS}\n\`\`\`"
 fi
 
-curl -s -X POST -H 'Content-type: application/json' \
-    --data "{\"text\":\"${MESSAGE}\"}" \
-    "${WEBHOOK_URL}"
+payload="$(jq -n --arg text "${MESSAGE}" '{text: $text}')"
+curl --fail --show-error --silent \
+    --connect-timeout 10 --max-time 30 \
+    -X POST -H 'Content-type: application/json' \
+    --data "${payload}" \
+    "${WEBHOOK_URL}"
🤖 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/osac-project/notify/osac-project-notify-commands.sh`
around lines 33 - 40, The current code builds MESSAGE via shell string
interpolation and embeds it directly into the curl --data JSON string, which can
break if MESSAGE contains quotes or other JSON-sensitive characters; update the
notify step to JSON-encode the payload instead of manual interpolation by
replacing the inline --data "{\"text\":\"${MESSAGE}\"}" pattern with a safe
encoder (e.g., use jq, python -c 'import json,sys; print(json.dumps({...}))', or
printf + jq) to produce a properly escaped JSON object and then pass that
encoded payload to curl (keeping the existing MESSAGE, WEBHOOK_URL and curl
invocation but feeding curl the encoded JSON via --data `@-` or a temp file).

Comment thread ci-operator/step-registry/osac-project/notify/osac-project-notify-commands.sh Outdated
@omer-vishlitzky omer-vishlitzky force-pushed the osac-867-nightly-vmaas branch from f2407dd to 7e33c12 Compare May 17, 2026 21:03
@omer-vishlitzky omer-vishlitzky changed the title OSAC-867: add nightly full-installation vmaas E2E with Slack notification OSAC-793: add nightly full-installation vmaas E2E with Slack notification May 17, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented May 17, 2026

@omer-vishlitzky: This pull request references OSAC-793 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 task to target the "5.0.0" version, but no target version was set.

Details

In response to this:

Summary

Adds a nightly periodic job that installs OSAC with all component images
overridden to their latest CI-built versions
, runs all vmaas E2E tests, and
sends results to Slack.

Unlike the existing 8 periodic jobs (which run one test each with pinned
installer versions), this job:

  1. Swaps fulfillment-service, osac-operator, and osac-aap to their latest
    CI images before installation
  2. Runs all vmaas tests in a single job via make test-vmaas
  3. Sends a Slack notification with pass/fail, deployed versions, and Prow link

New step-registry components

Component Purpose
osac-project-installer-all-latest Installs OSAC with all images swapped to latest
osac-project-baremetal-test-all Runs make test-vmaas (all tests), reports versions
osac-project-ofcir-baremetal-nightly Nightly workflow chaining install + test + notify
osac-project-notify Slack notification (from PR #79364, will rebase when merged)

Removed dead code

  • osac-project-installer-component — single-image swap, replaced by all-latest
  • osac-project-ofcir-baremetal-component — workflow that used it, unused by any config

Flow

ofcir-acquire → assisted-ofcir-setup → assisted-common-pre
 → osac-project-installer-all-latest (swap all images, run setup.sh)
 → osac-project-baremetal-test-all (make test-vmaas)
 → osac-project-notify → gather → release

Cluster specs

SNO with 64 GB RAM, 2x200 GB disks, 24 vCPUs, CNV + LVM, OCP 4.20.
Runs nightly at 3am UTC.

Test plan

  • Rehearse via /test nightly-e2e-vmaas
  • Verify all component images are swapped to latest in the installation logs
  • Verify Slack notification with pass/fail + versions

Summary

This PR modifies the OpenShift CI configuration in the openshift/release repository to add a nightly full-installation vmaas end-to-end job for the OSAC project that installs OSAC with the latest CI-built component images, runs the full vmaas test suite, and posts Slack notifications with pass/fail, deployed component versions, and a Prow link.

What changed (practical terms)

  • Adds a nightly periodic test (nightly-e2e-vmaas) in ci-operator config to run at 03:00 UTC against OCP 4.20 using the packet-assisted cluster profile.
  • Introduces step-registry steps and a workflow that provision a cluster, install OSAC with image overrides, run tests, gather artifacts, notify Slack, and release resources.

New CI step-registry components

  • osac-project-installer-all-latest
  • Installs OSAC on a provisioned cluster and overrides multiple components to their latest CI-built images (fulfillment-service, osac-operator, osac-aap EE image + branch) before running the installer (scripts/setup.sh).
  • osac-project-baremetal-test-all
  • Runs the entire vmaas E2E suite via make test-vmaas on a remote CI machine, collects JUnit results and writes deployed component image versions to SHARED_DIR/versions.txt; registers artifact collection on exit.
  • osac-project-ofcir-baremetal-nightly
  • Workflow that chains: ofcir-acquire → assisted-ofcir-setup → assisted-common-pre → osac-project-installer-all-latest → osac-project-baremetal-test-all → osac-project-notify → gather → release.
  • osac-project-notify
  • Best-effort step that posts formatted Slack messages (status emoji, Prow logs link, and component versions from versions.txt) using a Vault-mounted webhook.

Removed / consolidated items

  • Removed the single-component installer step/script (osac-project-installer-component) and the older component workflow (osac-project-ofcir-baremetal-component) in favor of the all-latest installer and single end-to-end job.

Cluster and runtime configuration

  • Targets a single-node/full-installation profile with CNV + LVM:
  • SNO, 64 GB RAM, 2×200 GB disks, 24 vCPUs
  • OpenShift version: 4.20
  • Test job timeouts/grace periods: installer step (3h), test step (2h), notify step (5m).
  • Images wired via ci-operator base_images and step dependencies (osac-test-infra, osac-installer, fulfillment-service, osac-operator, osac-aap).

Notifications & reporting

  • Slack webhook read from Vault credentials; message includes status (PASSED/FAILED), emoji, Prow job link, and captured deployed component image lines.
  • Test artifacts: JUnit XML copied from remote test run into ARTIFACT_DIR for Prow reporting.

Verification / test plan

  • Rehearse with: /test nightly-e2e-vmaas
  • Verify installer logs show fulfillment-service, osac-operator, and osac-aap were swapped to latest CI images.
  • Verify Slack message contains pass/fail, Prow link, and deployed versions.

Notes / bot feedback

  • openshift-ci-robot confirmed the PR references OSAC-867 and the Jira issue is valid, but warned the Jira issue has an invalid/missing target version for the target branch (expected target version "5.0.0" not set).

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.

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/jira-refresh

@omer-vishlitzky omer-vishlitzky force-pushed the osac-867-nightly-vmaas branch from 7e33c12 to a21d2cb Compare May 17, 2026 22:10
@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-osac-project-osac-test-infra-main-nightly-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-osac-project-osac-test-infra-main-nightly-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky omer-vishlitzky force-pushed the osac-867-nightly-vmaas branch 2 times, most recently from 18b39fe to 4670df7 Compare May 18, 2026 15:18
@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@omer-vishlitzky, pj-rehearse: unable to determine affected jobs. This could be due to a branch that needs to be rebased. ERROR:

couldn't prepare candidate: couldn't checkout base SHA ca7c9e4273407412151f7ad25e445d272dd2ab7a: error checking out "ca7c9e4273407412151f7ad25e445d272dd2ab7a": exit status 128 fatal: unable to read tree (ca7c9e4273407412151f7ad25e445d272dd2ab7a)

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.

1 similar comment
@openshift-merge-bot
Copy link
Copy Markdown
Contributor

@omer-vishlitzky, pj-rehearse: unable to determine affected jobs. This could be due to a branch that needs to be rebased. ERROR:

couldn't prepare candidate: couldn't checkout base SHA ca7c9e4273407412151f7ad25e445d272dd2ab7a: error checking out "ca7c9e4273407412151f7ad25e445d272dd2ab7a": exit status 128 fatal: unable to read tree (ca7c9e4273407412151f7ad25e445d272dd2ab7a)

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.

@omer-vishlitzky omer-vishlitzky force-pushed the osac-867-nightly-vmaas branch 2 times, most recently from a2c21a5 to a947054 Compare May 18, 2026 15:48
…tion

Add a nightly periodic job that installs OSAC with ALL component images
overridden to their latest CI-built versions, runs all vmaas tests, and
sends results to Slack with pass/fail status and component versions.

New step-registry components:
- osac-project-installer-all-latest: installs OSAC with fulfillment-service,
  osac-operator, and osac-aap images all swapped to latest
- osac-project-baremetal-test-all: runs make test-vmaas (all tests)
- osac-project-ofcir-baremetal-nightly: dedicated nightly workflow
- osac-project-notify: Slack webhook notification (from PR openshift#79364)

Removes unused dead code:
- osac-project-installer-component: single-image swap, replaced by all-latest
- osac-project-ofcir-baremetal-component: workflow using installer-component
@omer-vishlitzky omer-vishlitzky force-pushed the osac-867-nightly-vmaas branch from a947054 to a936e25 Compare May 18, 2026 16:02
@openshift-merge-bot
Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@omer-vishlitzky: 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-osac-project-osac-test-infra-main-e2e-vmaas osac-project/osac-test-infra presubmit Ci-operator config changed
pull-ci-osac-project-osac-test-infra-main-images osac-project/osac-test-infra presubmit Ci-operator config changed
pull-ci-osac-project-fulfillment-service-main-e2e-vmaas osac-project/fulfillment-service presubmit Ci-operator config changed
pull-ci-osac-project-fulfillment-service-main-images osac-project/fulfillment-service presubmit Ci-operator config changed
pull-ci-osac-project-fulfillment-service-main-unit osac-project/fulfillment-service presubmit Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-compute-instance-creation N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-compute-instance-delete-during-provision N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-nightly-e2e-vmaas N/A periodic Periodic changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-compute-instance-api-fields N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-virtual-network-lifecycle N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-subnet-lifecycle N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-compute-instance-restart-negative N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-compute-instance-restart N/A periodic Ci-operator config changed
periodic-ci-osac-project-osac-test-infra-main-e2e-metal-vmaas-compute-instance-cli-fields N/A periodic Ci-operator config 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.

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse periodic-ci-osac-project-osac-test-infra-main-nightly-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse ack

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@openshift-merge-bot openshift-merge-bot Bot added the rehearsals-ack Signifies that rehearsal jobs have been acknowledged label May 18, 2026
test:
- ref: osac-project-baremetal-test-all
post:
- ref: osac-project-notify
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Which Slack channel does this notify?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Copy link
Copy Markdown

@akshaynadkarni akshaynadkarni left a comment

Choose a reason for hiding this comment

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

Please check my comment here.
Code changes LGTM

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label May 19, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 19, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: akshaynadkarni, omer-vishlitzky

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

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD b9a138c and 2 for PR HEAD a936e25 in total

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD 0a69a74 and 1 for PR HEAD a936e25 in total

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/test openshift-image-mirror-mappings

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse ack

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/hold

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label May 19, 2026
@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/unhold

@openshift-ci openshift-ci Bot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label May 19, 2026
@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/hold

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label May 19, 2026
@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse pull-ci-osac-project-osac-test-infra-main-e2e-vmaas pull-ci-osac-project-fulfillment-service-main-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse pull-ci-osac-project-osac-test-infra-main-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse pull-ci-osac-project-fulfillment-service-main-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@omer-vishlitzky
Copy link
Copy Markdown
Contributor Author

/pj-rehearse pull-ci-osac-project-osac-test-infra-main-e2e-vmaas pull-ci-osac-project-fulfillment-service-main-e2e-vmaas

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 19, 2026

@omer-vishlitzky: 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-osac-project-osac-test-infra-main-nightly-e2e-vmaas a936e25 link unknown /pj-rehearse periodic-ci-osac-project-osac-test-infra-main-nightly-e2e-vmaas
ci/rehearse/osac-project/fulfillment-service/main/e2e-vmaas a936e25 link unknown /pj-rehearse pull-ci-osac-project-fulfillment-service-main-e2e-vmaas
ci/rehearse/osac-project/osac-test-infra/main/e2e-vmaas a936e25 link unknown /pj-rehearse pull-ci-osac-project-osac-test-infra-main-e2e-vmaas

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

approved Indicates a PR has been approved by an approver from all required OWNERS files. do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged. rehearsals-ack Signifies that rehearsal jobs have been acknowledged

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants