OCPNODE-4055: Allow missing architectures for Additional Storage test images#80823
OCPNODE-4055: Allow missing architectures for Additional Storage test images#80823BhargaviGudi wants to merge 1 commit into
Conversation
|
@BhargaviGudi: This pull request references OCPNODE-4055 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set. DetailsIn response to this:
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. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: BhargaviGudi The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (1)
WalkthroughThree ChangesCI Manifest List Allowlist
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[REHEARSALNOTIFIER]
Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals. Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
Summary
Add architecture exceptions for Additional Storage Support test images to the
verify-image-manifest-listspresubmit job.Background
PR openshift/origin#31083 introduces comprehensive E2E tests for the Additional Storage Support feature (OCPNODE-4055). The tests use three eStargz-format images for testing lazy-pulling functionality:
quay.io/openshifttest/additional-storage-tests:test-5mb-estargzquay.io/openshifttest/additional-storage-tests:test-6gb-estargz-v1.0quay.io/openshifttest/additional-storage-tests:test-6gb-standard-v1.0Issue
These images are currently amd64-only and fail the
verify-image-manifest-listsCI check with:error: the following images do not have manifest lists with all required architectures (amd64, arm64, ppc64le, s390x):
...test-5mb-estargz...: is not a manifest list
...test-6gb-estargz-v1.0...: is not a manifest list
...test-6gb-standard-v1.0...: is not a manifest list
Solution
Add these images to the
--allow-missing-architecturesexception list in the verify job configuration.Changes
--allow-missing-architecturesflags for the test images inci-operator/config/openshift/origin/openshift-origin-main.yamlSummary by CodeRabbit
This PR modifies the CI configuration for openshift/origin to accommodate three new test images required by the Additional Storage Support feature (OCPNODE-4055). Specifically, it adds architecture exceptions to the
verify-image-manifest-listspresubmit check in the openshift/release repository.What changed:
Three
--allow-missing-architecturesflags were added to theverify-image-manifest-liststest step inci-operator/config/openshift/origin/openshift-origin-main.yaml. These exceptions allow the following eStargz-format test images to pass CI checks despite being amd64-only:quay.io/openshifttest/additional-storage-tests:test-5mb-estargzquay.io/openshifttest/additional-storage-tests:test-6gb-estargz-v1.0quay.io/openshifttest/additional-storage-tests:test-6gb-standard-v1.0Why it matters:
The
verify-image-manifest-listscheck normally requires images to have manifest lists for all architectures (amd64, arm64, ppc64le, s390x). These test images are intentionally amd64-only for testing lazy-pulling functionality, so this exception is necessary to allow the E2E tests to run without CI failures. This change enables the upstream implementation of the Additional Storage Support feature while keeping test infrastructure focused on the specific architectures where testing is needed.