Skip to content

OAPE-694: Add E2E coverage reporting for secrets-store-csi-driver-operator#79231

Open
PillaiManish wants to merge 3 commits into
openshift:mainfrom
PillaiManish:sscsi-e2e-coverage-integration
Open

OAPE-694: Add E2E coverage reporting for secrets-store-csi-driver-operator#79231
PillaiManish wants to merge 3 commits into
openshift:mainfrom
PillaiManish:sscsi-e2e-coverage-integration

Conversation

@PillaiManish

@PillaiManish PillaiManish commented May 13, 2026

Copy link
Copy Markdown
Member

Summary

  • Creates a new standalone operator-e2e-coverage CI test for secrets-store-csi-driver-operator that provisions an Azure cluster, deploys a coverage-instrumented operator image, runs e2e tests, and collects/uploads Go coverage data to Codecov
  • The new test is LGTM-gated (always_run: false, not optional) — it only triggers in the second stage after the lgtm label is added to a PR, via the pipeline controller
  • Enrolls openshift/secrets-store-csi-driver-operator (main branch) in the LGTM pipeline controller config
  • Keeps the existing operator-e2e-fips test unchanged (no coverage logic)

How It Works

  1. Stage 1 (on PR open): unit, verify, operator-e2e-fips, operator-e2e-aws, operator-e2e-azure, operator-e2e-gcp, etc. run automatically
  2. Stage 2 (after lgtm): Pipeline controller triggers operator-e2e-coverage
  3. The coverage test:
    • Provisions an Azure cluster via openshift-e2e-azure-csi-secrets-store workflow
    • setup-coverage step patches the CSV to swap in the coverage-instrumented image and inject GOCOVERDIR
    • test-e2e step runs the full e2e suite against the instrumented operator
    • collect-coverage post step (best_effort) sends SIGTERM to flush coverage, copies data via oc cp, converts to Go profile, and uploads to Codecov

Coverage collection failures never block PR merge (best_effort: true on the collect step). The test itself is merge-blocking but only runs after reviewer approval.

Can also be triggered manually anytime with /test operator-e2e-coverage.

Changes

File Change
ci-operator/config/openshift/secrets-store-csi-driver-operator/...-main.yaml Add operator-e2e-coverage test, keep coverage image build, revert operator-e2e-fips to original
core-services/pipeline-controller/lgtm-config.yaml Enroll secrets-store-csi-driver-operator (main branch)
ci-operator/jobs/... (generated) Regenerated Prow job configs via make update

References

@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 13, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@PillaiManish: This pull request explicitly references no jira issue.

Details

In response to this:

Summary

  • Adds a coverage-instrumented image build via dockerfile_literal for secrets-store-csi-driver-operator
  • Adds setup-coverage step to the operator-e2e-fips test that patches the CSV to swap in the coverage image and set GOCOVERDIR
  • Adds collect-coverage post step (best_effort: true) that sends SIGTERM to flush coverage data, waits for container restart, copies data via oc cp, converts to Go profile, and uploads to Codecov

Coverage collection failures never block PR merge (best_effort: true).

References

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 openshift-ci Bot requested review from TrilokGeer and chiragkyal May 13, 2026 09:49
@PillaiManish

Copy link
Copy Markdown
Member Author

/pj-rehearse max

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@coderabbitai

coderabbitai Bot commented May 13, 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 coverage-enabled operator image and CI steps to the operator-e2e-fips flow: build a GOCOVERDIR-instrumented image, patch the CSV to deploy it during tests, then collect, convert, and optionally upload Go coverage artifacts after tests.

Changes

Coverage Instrumentation and Collection for FIPS E2E Tests

Layer / File(s) Summary
Coverage image build/publish target
ci-operator/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml
Adds secrets-store-csi-driver-operator-coverage image output using Dockerfile.coverage.
CI setup and post-step: setup-coverage & collect-coverage
ci-operator/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml
Adds setup-coverage step that patches the CSV to use the coverage image and injects GOCOVERDIR, and a collect-coverage post-step that flushes coverage from the operator pod, copies /tmp/e2e-cover to workspace, converts covdata to text/percent, verifies uploader SHA256, and uploads when CODECOV_TOKEN is present.
sequenceDiagram
  participant CI as CI Job
  participant API as OpenShift API
  participant Pod as Operator Pod
  participant Codecov as Codecov

  CI->>API: setup-coverage: patch CSV -> use COVERAGE_IMAGE, add GOCOVERDIR
  API->>Pod: rollout new operator deployment
  Pod-->>API: readiness
  CI->>API: run operator-e2e-fips tests
  API->>Pod: tests exercise operator (writes coverage to /tmp/e2e-cover)
  CI->>Pod: collect-coverage: kubectl exec SIGTERM (flush coverage)
  Pod-->>API: restart/ready
  CI->>Pod: kubectl cp /tmp/e2e-cover -> workspace
  CI->>CI: go tool covdata convert -> text/percent
  CI->>Codecov: verify uploader SHA256
  alt CODECOV_TOKEN present
    CI->>Codecov: upload coverage profile
  else
    CI->>CI: preserve local coverage files
  end
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

🚥 Pre-merge checks | ✅ 12
✅ Passed checks (12 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 PR contains no Ginkgo test code - only CI configuration YAML and standard Go test files using testing.T framework. Custom check for stable Ginkgo test names is not applicable.
Test Structure And Quality ✅ Passed PR contains only CI/CD YAML configuration changes, no Ginkgo or Go test code; custom check for test code quality is not applicable.
Microshift Test Compatibility ✅ Passed This PR modifies only CI configuration (YAML). No new Ginkgo e2e test definitions are added, so the MicroShift compatibility check does not apply.
Single Node Openshift (Sno) Test Compatibility ✅ Passed This PR only modifies CI/CD YAML configuration. No new Ginkgo e2e tests are added, so the SNO compatibility check does not apply.
Topology-Aware Scheduling Compatibility ✅ Passed This PR modifies CI test infrastructure configuration only, not deployment manifests, operator code, or controllers. No topology-aware scheduling constraints are introduced.
Ote Binary Stdout Contract ✅ Passed PR modifies only CI configuration YAML files in the release repository, not executable code or binaries. The custom check applies to OTE binary process-level code; this PR contains no such code.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed This PR adds CI/CD configuration for coverage reporting, not new Ginkgo e2e tests. The changes are to YAML config files only; no test code is added.
Title check ✅ Passed The title accurately summarizes the main change: adding E2E coverage reporting for the secrets-store-csi-driver-operator, which is directly reflected in the CI configuration changes (coverage image build, setup-coverage step, and collect-coverage post step).
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ 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.

@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: 2

🤖 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/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml`:
- Around line 225-228: The JSON patch that appends GOCOVERDIR to the container
env can fail if the container has no env array; modify the patching logic around
the oc patch csv "${csv}" -n "${NAMESPACE}" call so you first ensure the target
container has an env array before using the add with path ".../env/-". Implement
this by either (a) issuing a preparatory patch (e.g., an oc patch --type=merge
or a JSON patch that creates
/spec/install/spec/deployments/0/spec/template/spec/containers/0/env as an empty
array if missing) and then run the existing add for the GOCOVERDIR entry, or (b)
stop using a single JSON-patch append and instead perform a
merge/strategic-merge patch that injects the env entry (including COVERAGE_IMAGE
and GOCOVERDIR_PATH) in one safe operation so it works whether env exists or
not.
- Around line 142-151: The current flow sends SIGTERM to PID 1 then waits for
the pod to restart and runs oc cp from ${GOCOVERDIR_PATH}, but that path is on
the container ephemeral filesystem so the coverage files are lost when the
container restarts; update the job to either (A) ensure ${GOCOVERDIR_PATH} is
backed by a persistent volume (e.g., mount an emptyDir or hostPath to the same
path in the pod spec) so files survive the restart, or (B) copy the coverage
files out of the running container before sending kill -TERM 1 (use oc cp from
${NAMESPACE}/${pod}:${GOCOVERDIR_PATH} to ${coverage_dir} prior to the oc exec
'kill -TERM 1'), referencing the variables GOCOVERDIR_PATH, coverage_dir, oc
exec, and oc cp in your changes.
🪄 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: dc595cc8-a074-4cb4-966d-d7c7cea09e3e

📥 Commits

Reviewing files that changed from the base of the PR and between 25e6677 and 755dba5.

📒 Files selected for processing (1)
  • ci-operator/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml

@PillaiManish PillaiManish force-pushed the sscsi-e2e-coverage-integration branch from 4a11003 to 81f4d0c Compare May 13, 2026 11:13
@PillaiManish

Copy link
Copy Markdown
Member Author

/pj-rehearse max

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@PillaiManish

Copy link
Copy Markdown
Member Author

/pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-gcp

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

@PillaiManish

Copy link
Copy Markdown
Member Author

…ator

Add coverage-instrumented image build and CI steps to collect E2E
test coverage data and upload to Codecov.

Co-authored-by: Cursor <cursoragent@cursor.com>
@PillaiManish PillaiManish force-pushed the sscsi-e2e-coverage-integration branch from 81f4d0c to e1260f0 Compare May 20, 2026 05:39

@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.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
ci-operator/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml (1)

40-128: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Regenerate CI-generated artifacts for this config change.

Since this modifies ci-operator/config/..., please run make update and include any generated downstream config changes in this PR to keep CI job definitions in sync.

As per coding guidelines, "After modifying CI configuration files in ci-operator/config/, regenerate downstream artifacts by running make update."

🤖 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/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml`
around lines 40 - 128, The CI config change for the
secrets-store-csi-driver-operator (changes to the operator bundles,
substitutions, promotion/releases, and tests such as operator-e2e-fips) requires
regenerating downstream CI artifacts; run make update in the repo, capture and
stage all generated changes (downstream configs, job definitions, and any
updated templates), and add those generated files to this PR so the CI job
definitions stay in sync with the modified CI config.
🤖 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.

Outside diff comments:
In
`@ci-operator/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml`:
- Around line 40-128: The CI config change for the
secrets-store-csi-driver-operator (changes to the operator bundles,
substitutions, promotion/releases, and tests such as operator-e2e-fips) requires
regenerating downstream CI artifacts; run make update in the repo, capture and
stage all generated changes (downstream configs, job definitions, and any
updated templates), and add those generated files to this PR so the CI job
definitions stay in sync with the modified CI config.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: 2499e51d-5a7f-4d44-a1bc-6c94339c34b4

📥 Commits

Reviewing files that changed from the base of the PR and between 81f4d0c and e1260f0.

📒 Files selected for processing (1)
  • ci-operator/config/openshift/secrets-store-csi-driver-operator/openshift-secrets-store-csi-driver-operator-main.yaml

@PillaiManish PillaiManish changed the title NO-JIRA: Add E2E coverage reporting for secrets-store-csi-driver-operator OAPE-694: Add E2E coverage reporting for secrets-store-csi-driver-operator May 20, 2026
@openshift-ci-robot

openshift-ci-robot commented May 20, 2026

Copy link
Copy Markdown
Contributor

@PillaiManish: This pull request references OAPE-694 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 sub-task to target the "5.0.0" version, but no target version was set.

Details

In response to this:

Summary

  • Adds a coverage-instrumented image build via dockerfile_literal for secrets-store-csi-driver-operator
  • Adds setup-coverage step to the operator-e2e-fips test that patches the CSV to swap in the coverage image and set GOCOVERDIR
  • Adds collect-coverage post step (best_effort: true) that sends SIGTERM to flush coverage data, waits for container restart, copies data via oc cp, converts to Go profile, and uploads to Codecov

Coverage collection failures never block PR merge (best_effort: true).

References

E2E Coverage Reporting Infrastructure for secrets-store-csi-driver-operator

This PR updates OpenShift CI configuration (ci-operator config for openshift/secrets-store-csi-driver-operator) to add end-to-end Go coverage collection for the secrets-store-csi-driver-operator E2E runs.

Practical changes:

  • Adds a coverage-instrumented operator image build (Dockerfile.coverage) that produces pipeline image secrets-store-csi-driver-operator-coverage.
  • Wires coverage into the operator-e2e-fips job:
  • setup-coverage (pre-test): runs hack/e2e-coverage.sh setup, depends on the secrets-store-csi-driver-operator-coverage image (COVERAGE_IMAGE) so the CSV can be patched to swap in the coverage image and GOCOVERDIR injected before tests run.
  • collect-coverage (post-test, best_effort: true): runs hack/e2e-coverage.sh collect, mounts a Codecov token credential (sscsi-driver-operator-codecov-token) if available, and performs the usual sequence to flush, collect, convert, and optionally upload Go coverage artifacts (SIGTERM to flush, oc cp of /tmp/e2e-cover, conversion to a Go coverage profile, upload to Codecov). The step is best_effort so failures do not block merges.
  • Credentials: a Codecov token mount is added for uploads; uploads remain optional and collection/upload failures are tolerated.

Why this matters:

  • Enables automated collection (and optional upload) of E2E-produced Go coverage for the secrets-store-csi-driver-operator while keeping CI reliability by marking collection as non-blocking.

References:

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.

Move coverage instrumentation out of operator-e2e-fips into a new
operator-e2e-coverage test that runs only after lgtm label via the
pipeline controller. Enroll secrets-store-csi-driver-operator (main)
in the LGTM pipeline config.

Co-authored-by: Cursor <cursoragent@cursor.com>
@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: PillaiManish
Once this PR has been reviewed and has the lgtm label, please assign psalajova, romanbednar 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

@rausingh-rh

Copy link
Copy Markdown

/pj-rehearse max

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

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

Add a postsubmit job that runs e2e coverage on main after merge,
so Codecov has a baseline to compute PR coverage deltas against.

Co-authored-by: Cursor <cursoragent@cursor.com>
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@PillaiManish: 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-secrets-store-csi-driver-operator-main-operator-e2e-coverage openshift/secrets-store-csi-driver-operator presubmit Presubmit changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-ci-index-secrets-store-csi-driver-operator-bundle openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-fips-image-scan-mustgather openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-fips-image-scan-operator openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-images openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-aws openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-azure openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-azure-rhcos10 openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-azure-rhcos10-fips openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-fips openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-gcp openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-vault-fips openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-security openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-unit openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-verify openshift/secrets-store-csi-driver-operator presubmit Ci-operator config changed
pull-ci-openshift-secrets-store-csi-driver-operator-main-verify-deps openshift/secrets-store-csi-driver-operator presubmit 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.

@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

@PillaiManish: 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/openshift/secrets-store-csi-driver-operator/main/operator-e2e-azure-rhcos10-fips 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-azure-rhcos10-fips
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-azure-rhcos10 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-azure-rhcos10
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-azure 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-azure
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-coverage 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-coverage
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-gcp 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-gcp
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-aws 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-aws
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/images 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-images
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-fips 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-fips
ci/rehearse/openshift/secrets-store-csi-driver-operator/main/operator-e2e-vault-fips 80e46c2 link unknown /pj-rehearse pull-ci-openshift-secrets-store-csi-driver-operator-main-operator-e2e-vault-fips

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

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.

3 participants