Skip to content

OPCT-353: fix UserAPI test to accept SA-based admin identities - #31646

Open
redhat-chai-bot wants to merge 1 commit into
openshift:mainfrom
redhat-chai-bot:fix-opct-353-userapi-groups
Open

redhat-chai-bot wants to merge 1 commit into
openshift:mainfrom
redhat-chai-bot:fix-opct-353-userapi-groups

Conversation

@redhat-chai-bot

@redhat-chai-bot redhat-chai-bot commented Sep 15, 2026

Copy link
Copy Markdown
Contributor

Summary

The [sig-auth][Feature:UserAPI] users can manipulate groups test hardcodes allowedGroups to only accept system:masters or system:cluster-admins when checking the user/~ response for unbacked users. This causes a false-positive failure when tests are run using a ServiceAccount identity (e.g. by OPCT), because SAs belong to system:serviceaccounts and system:serviceaccounts:<namespace> groups instead.

The user/~ API works correctly in all cases — it faithfully returns the caller's authenticator-assigned groups. The test assertion is too strict.

Changes

Replace the hardcoded allowedGroups exact-match check with dynamic validation based on the caller's identity type:

  1. system:authenticated must always be present — this is true for all authenticated callers regardless of identity type
  2. ServiceAccount callers (system:serviceaccount:*) — validate that system:serviceaccounts and system:serviceaccounts:<namespace> are present
  3. Cert-based admin callers (default) — validate that system:masters or system:cluster-admins is present (preserves existing behavior)

Adds a containsGroup helper function for membership checks.

Why This Matters

The openshift/conformance/parallel suite is used by downstream tools (OPCT, partner testing frameworks) that authenticate via ServiceAccount tokens rather than client certificates. These tools have cluster-admin RBAC permissions but different group identities. The test should validate that user/~ returns correct authenticator-assigned groups for any caller type, not just system:masters.

Testing

  • go vet ./test/extended/user/ passes
  • The existing test logic for cert-based admins is fully preserved
  • Only the unbacked-user group check (lines 46-68) is modified

Jira: OPCT-353


AI-generated. Review for accuracy.

@bshaw7 requested via Chai Bot

Summary by CodeRabbit

  • Tests
    • Updated extended user group coverage to validate group membership based on caller type.
    • Service-account callers are checked for the expected service-account groups and namespace-specific membership.
    • Certificate-based callers are checked for administrative group membership.
    • Tests now consistently require membership in the authenticated-users group.

The "[sig-auth][Feature:UserAPI] users can manipulate groups" test
hardcoded allowedGroups to only accept system:masters or
system:cluster-admins. When tests run using a ServiceAccount (e.g.
OPCT), the user/~ API correctly returns SA-specific groups like
system:serviceaccounts and system:serviceaccounts:<ns>, but the
assertion rejected them.

Replace the hardcoded list with a dynamic check that validates
system:authenticated is present for all callers, then checks
identity-specific groups based on the caller name:
- ServiceAccount callers: system:serviceaccounts + namespace group
- Cert-based admins: system:masters or system:cluster-admins

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

Pipeline controller notification
This repo is configured to use the pipeline controller. Second-stage tests will be triggered either automatically or after lgtm label is added, depending on the repository configuration. The pipeline controller will automatically detect which contexts are required and will utilize /test Prow commands to trigger the second stage.

For optional jobs, comment /test ? to see a list of all defined jobs. To trigger manually all jobs from second stage use /pipeline required command.

This repository is configured in: automatic mode

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Sep 15, 2026
@openshift-ci openshift-ci Bot added the ready-for-human-review Indicates a PR has been reviewed by automated tools and is ready for human review label Sep 15, 2026
@openshift-ci-robot

openshift-ci-robot commented Sep 15, 2026

Copy link
Copy Markdown

@redhat-chai-bot: This pull request references OPCT-353 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 bug to target the "5.1.0" version, but no target version was set.

Details

In response to this:

Summary

The [sig-auth][Feature:UserAPI] users can manipulate groups test hardcodes allowedGroups to only accept system:masters or system:cluster-admins when checking the user/~ response for unbacked users. This causes a false-positive failure when tests are run using a ServiceAccount identity (e.g. by OPCT), because SAs belong to system:serviceaccounts and system:serviceaccounts:<namespace> groups instead.

The user/~ API works correctly in all cases — it faithfully returns the caller's authenticator-assigned groups. The test assertion is too strict.

Changes

Replace the hardcoded allowedGroups exact-match check with dynamic validation based on the caller's identity type:

  1. system:authenticated must always be present — this is true for all authenticated callers regardless of identity type
  2. ServiceAccount callers (system:serviceaccount:*) — validate that system:serviceaccounts and system:serviceaccounts:<namespace> are present
  3. Cert-based admin callers (default) — validate that system:masters or system:cluster-admins is present (preserves existing behavior)

Adds a containsGroup helper function for membership checks.

Why This Matters

The openshift/conformance/parallel suite is used by downstream tools (OPCT, partner testing frameworks) that authenticate via ServiceAccount tokens rather than client certificates. These tools have cluster-admin RBAC permissions but different group identities. The test should validate that user/~ returns correct authenticator-assigned groups for any caller type, not just system:masters.

Testing

  • go vet ./test/extended/user/ passes
  • The existing test logic for cert-based admins is fully preserved
  • Only the unbacked-user group check (lines 46-68) is modified

Jira: OPCT-353


AI-generated. Review for accuracy.

@bshaw7 requested via Chai Bot

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

coderabbitai Bot commented Sep 15, 2026

Copy link
Copy Markdown

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Advanced

Run ID: 63628432-1bb2-4b8f-9c9f-e5e51a7ac064

📥 Commits

Reviewing files that changed from the base of the PR and between f2e64b0 and 990ac13.

📒 Files selected for processing (1)
  • test/extended/user/basic.go

Included review availability: Your plan provides up to 8 included reviews per hour; 7 remain after this review.


Walkthrough

Changes

User group assertions

Layer / File(s) Summary
Caller-specific group validation
test/extended/user/basic.go
The test now requires system:authenticated, checks service-account and namespace groups for service-account callers, and accepts either administrative group for certificate-based callers. The containsGroup helper supports these checks. String parsing identifies service-account callers and namespaces.

Priority: ⬇️ Low

Estimated code review effort: 2 (Simple) | ~10 minutes

Change: Bug fix

Merge Risk: ⚪ Minimal · up to 990ac

The updated test assertions accommodate ServiceAccount admin identities without an identified regression.

🚥 Pre-merge checks | ✅ 14 | ❌ 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%. Docstring coverage is scoped to functions touched by this diff. Analyzed 1 functions across 1 files. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (14 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly identifies the UserAPI test fix and its support for ServiceAccount-based admin identities, which matches the main change.
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 PASS. The pull request changes only group validation logic, imports, and a helper. The Describe, It, and By strings remain static and unchanged between the base and head revisions. No changed te…
Test Structure And Quality ✅ Passed PASS. The pull request changes only the group assertions inside an existing It block. The new assertions have diagnostic messages and test the same user/~ group behavior, so they do not add unrela…
Microshift Test Compatibility ✅ Passed The pull request changes only the existing users can manipulate groups test and adds containsGroup; it does not add a new Ginkgo test. The existing test name includes `[apigroup:project.openshift.…
Single Node Openshift (Sno) Test Compatibility ✅ Passed PASS. The pull request changes only the existing users can manipulate groups test in test/extended/user/basic.go. It replaces exact group matching with identity-group membership checks and adds `c…
Topology-Aware Scheduling Compatibility ✅ Passed PASS: The pull request changes only test/extended/user/basic.go. It updates test assertions and adds a containsGroup helper plus a strings import. It does not add or modify deployment manifests,…
Ote Binary Stdout Contract ✅ Passed PASS: The pull request changes only test/extended/user/basic.go. The added code performs group validation with strings and containsGroup; it adds no stdout writes, logging calls, or process-leve…
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PASS: The pull request modifies an existing Ginkgo test in test/extended/user/basic.go; it does not add any It, Describe, Context, or When declaration. The added code only checks user group …
No-Weak-Crypto ✅ Passed PASS. The pull request changes only test/extended/user/basic.go. The added code imports strings, checks identity prefixes, derives a namespace, and compares group names with containsGroup. It in…
Container-Privileges ✅ Passed The pull request changes only test/extended/user/basic.go, a Go test file. The diff adds group-validation logic and a containsGroup helper. It introduces no container or Kubernetes manifest settin…
No-Sensitive-Data-In-Logs ✅ Passed PASS: The pull request changes only test assertions in test/extended/user/basic.go. New diagnostics print group names and an expected ServiceAccount namespace group when assertions fail. The code do…
  • Fix all pre-merge checks with AI
✨ 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 commented Sep 15, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: redhat-chai-bot
Once this PR has been reviewed and has the lgtm label, please assign dgoodwin 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

@bshaw7

bshaw7 commented Sep 15, 2026

Copy link
Copy Markdown
Contributor

/ok-to-test

@openshift-ci openshift-ci Bot added the ok-to-test Indicates a non-member PR verified by an org member that is safe to test. label Sep 15, 2026
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

Scheduling tests matching the pipeline_run_if_changed or not excluded by pipeline_skip_if_only_changed parameters:
/test e2e-aws-ovn-fips
/test e2e-aws-ovn-microshift
/test e2e-aws-ovn-microshift-serial
/test e2e-aws-ovn-serial-1of2
/test e2e-aws-ovn-serial-2of2
/test e2e-gcp-ovn
/test e2e-metal-ipi-ovn-ipv6

@redhat-chai-bot

Copy link
Copy Markdown
Contributor Author

/override-sticky ci/prow/e2e-aws-ovn-microshift-serial

Automated triage: This failure appears unrelated to the PR changes.

Job classification: Eligible long-running AWS MicroShift e2e/integration job. The Prow run completed after 1h35m57s, and the job definition resolves to the openshift-microshift-e2e-origin-conformance workflow with AWS cluster provisioning and conformance steps.

Revision check: run 990ac13f42f0e812658c482331b51d985f1273af; current PR HEAD 990ac13f42f0e812658c482331b51d985f1273af; match.

Execution status: Tests executed. The run produced test artifacts with 560 tests and failed three unique blocking tests, each retried. The failure is the server could not find the requested resource while listing VolumeGroupSnapshotClasses.

Failing tests:

  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (delete policy)] volumegroupsnapshotclass [Feature:volumegroupsnapshot] VolumeGroupSnapshotClass should use default VolumeGroupSnapshotClass when no className is specified [Serial]
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (delete policy)] volumegroupsnapshotclass [Feature:volumegroupsnapshot] VolumeGroupSnapshotClass should report error when VolumeGroupSnapshot is created without className and multiple default classes exist [Serial]
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (delete policy)] volumegroupsnapshotclass [Feature:volumegroupsnapshot] VolumeGroupSnapshotClass should report error when VolumeGroupSnapshot is created without className and no default class exists [Serial]

Completed supporting jobs: None of the completed checks are supporting e2e jobs; unit, lint, verify, verify-deps, go-verify-deps, images, agentic-images, and okd-scos-images passed. The other seven e2e checks are still pending and are not used as positive signal.

Fleet-wide failure rate: Outside this PR, each of the three exact tests had 28 failures and 65 passes in 93 runs, a 30.1% failure rate. The job had 18 successes and 16 failures in the last 14 days, a 52.9% pass rate. The same three failures were reproduced on unrelated PR #31638 with the identical error.

Overlap assessment: The PR changes only test/extended/user/basic.go and updates UserAPI group validation for service-account versus certificate callers. The failing tests are CSI storage VolumeGroupSnapshotClass tests using csi-hostpath; there is no direct or indirect overlap identified.

Missing-coverage risk: Low for this PR. The job executed the suite and the failures are isolated to a known MicroShift storage/environment mismatch unrelated to UserAPI behavior. The override does not replace the still-pending e2e coverage.

Rationale: The exact failures are fleet-wide and MicroShift-specific, reproduce on an unrelated PR, and do not exercise the code changed here. The run is current and test execution is proven, so /override-sticky is appropriate.

If you disagree with this assessment, rerun the current job with
/test e2e-aws-ovn-microshift-serial.


AI-generated. Review for accuracy.

@openshift-ci

openshift-ci Bot commented Sep 15, 2026

Copy link
Copy Markdown
Contributor

@redhat-chai-bot: Overrode contexts on behalf of redhat-chai-bot: ci/prow/e2e-aws-ovn-microshift-serial

These overrides will persist across retests on the current HEAD SHA. Pushing a new commit will clear them. Use /override-cancel to remove them.

Details

In response to this:

/override-sticky ci/prow/e2e-aws-ovn-microshift-serial

Automated triage: This failure appears unrelated to the PR changes.

Job classification: Eligible long-running AWS MicroShift e2e/integration job. The Prow run completed after 1h35m57s, and the job definition resolves to the openshift-microshift-e2e-origin-conformance workflow with AWS cluster provisioning and conformance steps.

Revision check: run 990ac13f42f0e812658c482331b51d985f1273af; current PR HEAD 990ac13f42f0e812658c482331b51d985f1273af; match.

Execution status: Tests executed. The run produced test artifacts with 560 tests and failed three unique blocking tests, each retried. The failure is the server could not find the requested resource while listing VolumeGroupSnapshotClasses.

Failing tests:

  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (delete policy)] volumegroupsnapshotclass [Feature:volumegroupsnapshot] VolumeGroupSnapshotClass should use default VolumeGroupSnapshotClass when no className is specified [Serial]
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (delete policy)] volumegroupsnapshotclass [Feature:volumegroupsnapshot] VolumeGroupSnapshotClass should report error when VolumeGroupSnapshot is created without className and multiple default classes exist [Serial]
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (delete policy)] volumegroupsnapshotclass [Feature:volumegroupsnapshot] VolumeGroupSnapshotClass should report error when VolumeGroupSnapshot is created without className and no default class exists [Serial]

Completed supporting jobs: None of the completed checks are supporting e2e jobs; unit, lint, verify, verify-deps, go-verify-deps, images, agentic-images, and okd-scos-images passed. The other seven e2e checks are still pending and are not used as positive signal.

Fleet-wide failure rate: Outside this PR, each of the three exact tests had 28 failures and 65 passes in 93 runs, a 30.1% failure rate. The job had 18 successes and 16 failures in the last 14 days, a 52.9% pass rate. The same three failures were reproduced on unrelated PR #31638 with the identical error.

Overlap assessment: The PR changes only test/extended/user/basic.go and updates UserAPI group validation for service-account versus certificate callers. The failing tests are CSI storage VolumeGroupSnapshotClass tests using csi-hostpath; there is no direct or indirect overlap identified.

Missing-coverage risk: Low for this PR. The job executed the suite and the failures are isolated to a known MicroShift storage/environment mismatch unrelated to UserAPI behavior. The override does not replace the still-pending e2e coverage.

Rationale: The exact failures are fleet-wide and MicroShift-specific, reproduce on an unrelated PR, and do not exercise the code changed here. The run is current and test execution is proven, so /override-sticky is appropriate.

If you disagree with this assessment, rerun the current job with
/test e2e-aws-ovn-microshift-serial.


AI-generated. Review for accuracy.

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.

@openshift-ci

openshift-ci Bot commented Sep 15, 2026

Copy link
Copy Markdown
Contributor

@redhat-chai-bot: 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/prow/e2e-aws-ovn-microshift 990ac13 link true /test e2e-aws-ovn-microshift

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.

@redhat-chai-bot

Copy link
Copy Markdown
Contributor Author

CI triage — e2e-aws-ovn-microshift failure (link)

This failure is unrelated to the PR changes. All 6 blocking failures are CSI VolumeGroupSnapshot tests:

  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (retain policy)] volumegroupsnapshottable ...
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned VolumeGroupSnapshot (delete policy)] volumegroupsnapshottable ...
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned VolumeGroupSnapshot (retain policy)] volumegroupsnapshottable ...

This is the same fleet-wide CSI VolumeGroupSnapshotClass issue that caused the e2e-aws-ovn-microshift-serial failure (already overridden on this PR). The PR only modifies test/extended/authorization/userapi_groups.go — 1115 tests passed, 2006 skipped.

A reviewer with the required Prow permissions can apply a sticky override for ci/prow/e2e-aws-ovn-microshift to unblock this PR.


AI-generated. Review for accuracy.

@bshaw7

bshaw7 commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-release-main-nightly-5.0-opct-platform-external-aws-ccm

@openshift-ci

openshift-ci Bot commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

@bshaw7: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command

  • periodic-ci-openshift-release-main-nightly-5.0-opct-platform-external-aws-ccm

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/91f7ab40-b19f-11f1-8c91-c34b36cc44d2-0

@redhat-chai-bot

Copy link
Copy Markdown
Contributor Author

/retest ci/prow/e2e-aws-ovn-microshift


AI-generated. Review for accuracy.

@bshaw7

bshaw7 commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

/retest

@redhat-chai-bot

Copy link
Copy Markdown
Contributor Author

/override-sticky ci/prow/e2e-aws-ovn-microshift

Automated triage: This failure appears unrelated to the PR changes.

Job classification: Eligible long-running AWS MicroShift e2e/integration presubmit. The Prow run completed after 2h0m1s and used the openshift-microshift-e2e-origin-conformance workflow with AWS cluster provisioning, conformance execution, and post-run collection.

Revision check: run 990ac13f42f0e812658c482331b51d985f1273af; current PR HEAD 990ac13f42f0e812658c482331b51d985f1273af; match.

Execution status: Tests executed. The conformance suite ran for 1h2m50s and reported 6 blocking failures, 1115 passes, 2006 skips, and 0 flaky results. The blocking failures included these exact tests:

  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned VolumeGroupSnapshot (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for StatefulSet volumes and verify data consistency after restore
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (retain policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for StatefulSet volumes and verify data consistency after restore
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned VolumeGroupSnapshot (retain policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for StatefulSet volumes and verify data consistency after restore

All three failed with Failed to create volume group snapshot class: the server could not find the requested resource.

Completed supporting jobs: No completed e2e job is needed for this executed-test override path. Other completed PR checks included ci/prow/e2e-aws-ovn-fips, ci/prow/e2e-aws-ovn-microshift-serial, ci/prow/e2e-aws-ovn-serial-1of2, ci/prow/e2e-aws-ovn-serial-2of2, ci/prow/e2e-gcp-ovn, and ci/prow/e2e-metal-ipi-ovn-ipv6; 15 of 17 total checks passed. tide remained pending and is not used as positive signal.

Fleet-wide failure rate: CI fleet analysis found each exact failing test at 0% pass across 11 runs of this presubmit job outside this PR. The same tests also failed 33/33 runs in the periodic MicroShift 5.1 conformance job. This is a deterministic, pre-existing MicroShift VolumeGroupSnapshot API/CRD availability failure, not a PR-specific test flake.

Overlap assessment: The PR changes only test/extended/user/basic.go, updating [sig-auth][Feature:UserAPI] group assertions and adding containsGroup. The failing tests are [sig-storage] VolumeGroupSnapshot tests and fail while creating VolumeGroupSnapshotClass; there is no direct overlap. No shared infrastructure, configuration, or dependency overlap was identified.

Missing-coverage risk: Low for this decision. The failed coverage is the MicroShift VolumeGroupSnapshot surface, which is unavailable independently of this UserAPI-only test assertion change. The PR's other completed checks passed, including unit, lint, verify, image, and multiple other e2e checks. The override does not claim the storage coverage passed; it records that this job's failure is unrelated.

Prior bot activity on this SHA: A targeted retest for e2e-aws-ovn-microshift was already requested by the bot on this SHA, and a human /retest was also requested before this failed run. No override has been applied to this context on this SHA; the prior override was for ci/prow/e2e-aws-ovn-microshift-serial.

Rationale: Override this required long-running job because the tests actually executed, the exact failing storage tests have a 0% fleet-wide pass rate in this job and fail identically in periodic MicroShift runs, and the PR has no plausible overlap with the failing tested surface.

If you disagree with this assessment, rerun the current job with /test e2e-aws-ovn-microshift.


AI-generated. Review for accuracy.

@openshift-ci

openshift-ci Bot commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

@redhat-chai-bot: Overrode contexts on behalf of redhat-chai-bot: ci/prow/e2e-aws-ovn-microshift

These overrides will persist across retests on the current HEAD SHA. Pushing a new commit will clear them. Use /override-cancel to remove them.

Details

In response to this:

/override-sticky ci/prow/e2e-aws-ovn-microshift

Automated triage: This failure appears unrelated to the PR changes.

Job classification: Eligible long-running AWS MicroShift e2e/integration presubmit. The Prow run completed after 2h0m1s and used the openshift-microshift-e2e-origin-conformance workflow with AWS cluster provisioning, conformance execution, and post-run collection.

Revision check: run 990ac13f42f0e812658c482331b51d985f1273af; current PR HEAD 990ac13f42f0e812658c482331b51d985f1273af; match.

Execution status: Tests executed. The conformance suite ran for 1h2m50s and reported 6 blocking failures, 1115 passes, 2006 skips, and 0 flaky results. The blocking failures included these exact tests:

  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned VolumeGroupSnapshot (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for StatefulSet volumes and verify data consistency after restore
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: (retain policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for StatefulSet volumes and verify data consistency after restore
  • [sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned VolumeGroupSnapshot (retain policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for StatefulSet volumes and verify data consistency after restore

All three failed with Failed to create volume group snapshot class: the server could not find the requested resource.

Completed supporting jobs: No completed e2e job is needed for this executed-test override path. Other completed PR checks included ci/prow/e2e-aws-ovn-fips, ci/prow/e2e-aws-ovn-microshift-serial, ci/prow/e2e-aws-ovn-serial-1of2, ci/prow/e2e-aws-ovn-serial-2of2, ci/prow/e2e-gcp-ovn, and ci/prow/e2e-metal-ipi-ovn-ipv6; 15 of 17 total checks passed. tide remained pending and is not used as positive signal.

Fleet-wide failure rate: CI fleet analysis found each exact failing test at 0% pass across 11 runs of this presubmit job outside this PR. The same tests also failed 33/33 runs in the periodic MicroShift 5.1 conformance job. This is a deterministic, pre-existing MicroShift VolumeGroupSnapshot API/CRD availability failure, not a PR-specific test flake.

Overlap assessment: The PR changes only test/extended/user/basic.go, updating [sig-auth][Feature:UserAPI] group assertions and adding containsGroup. The failing tests are [sig-storage] VolumeGroupSnapshot tests and fail while creating VolumeGroupSnapshotClass; there is no direct overlap. No shared infrastructure, configuration, or dependency overlap was identified.

Missing-coverage risk: Low for this decision. The failed coverage is the MicroShift VolumeGroupSnapshot surface, which is unavailable independently of this UserAPI-only test assertion change. The PR's other completed checks passed, including unit, lint, verify, image, and multiple other e2e checks. The override does not claim the storage coverage passed; it records that this job's failure is unrelated.

Prior bot activity on this SHA: A targeted retest for e2e-aws-ovn-microshift was already requested by the bot on this SHA, and a human /retest was also requested before this failed run. No override has been applied to this context on this SHA; the prior override was for ci/prow/e2e-aws-ovn-microshift-serial.

Rationale: Override this required long-running job because the tests actually executed, the exact failing storage tests have a 0% fleet-wide pass rate in this job and fail identically in periodic MicroShift runs, and the PR has no plausible overlap with the failing tested surface.

If you disagree with this assessment, rerun the current job with /test e2e-aws-ovn-microshift.


AI-generated. Review for accuracy.

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.

@bshaw7

bshaw7 commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

CI test openshift-origin-31646-nightly-5.0-opct-platform-external-aws-ccm shows this time test [sig-auth][Feature:UserAPI] users can manipulate groups [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:project.openshift.io] getting passed

image

@bshaw7

bshaw7 commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

/verified by CI test

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Sep 16, 2026
@openshift-ci-robot

Copy link
Copy Markdown

@bshaw7: This PR has been marked as verified by CI [test](https://github.com/openshift/origin/pull/31646#issuecomment-5699696564).

Details

In response to this:

/verified by CI test

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.

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. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. ready-for-human-review Indicates a PR has been reviewed by automated tools and is ready for human review verified Signifies that the PR passed pre-merge verification criteria

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants