Register libvirt-s390x-vpn-ssp cluster profile#5252
Conversation
|
Pipeline controller notification For optional jobs, comment This repository is configured in: automatic mode |
|
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)
🔗 Linked repositories identifiedCodeRabbit considers these linked repositories for cross-repo context during reviews:
📝 WalkthroughWalkthroughAdds a new ChangesNew libvirt-s390x-vpn-virt cluster profile
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 15 | ❌ 2❌ Failed checks (2 warnings)
✅ 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 |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Davo911 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 |
|
Hi @Davo911. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions 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. |
nestoracunablanco
left a comment
There was a problem hiding this comment.
Thanks for the PR, @Davo911. Some comments only regarding naming convention.
25bc2e2 to
4d5370d
Compare
Add a new cluster profile `libvirt-s390x-vpn-ssp` for running SSP e2e functional tests on s390x architecture in the orange zone VPN environment This provides a dedicated profile for the SSP operator CI lane, using its own host and Boskos leases, will be added in a follow-up PR Signed-off-by: Thomas-David Griedel griedel911@gmail.com
4d5370d to
cb1afec
Compare
|
Scheduling tests matching the |
|
@Davo911: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions 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. |
Add a new cluster profile
libvirt-s390x-vpn-sspfor running SSP e2e functional tests on s390x architecture in the orange zone VPN environmentThis provides a dedicated profile for the SSP operator CI lane, using its own host and Boskos leases, will be added in a follow-up PR
Signed-off-by: Thomas-David Griedel griedel911@gmail.com
Summary
This pull request extends the OpenShift CI tools cluster profile API to add a new s390x “orange zone” VPN libvirt cluster profile for SSP e2e functional testing. It introduces the
libvirt-s390x-vpn-virtprofile so CI jobs and infrastructure resolution can consistently derive the expected cluster type and Boskos quota-slice lease name for this SSP-focused lane.Changes
pkg/api/clusterprofile.go
ClusterProfileconstant:ClusterProfileLibvirtS390xVPNVirt ClusterProfile = "libvirt-s390x-vpn-virt"ClusterProfiles()so it’s accepted as a valid input.ClusterType()now mapsClusterProfileLibvirtS390xVPNVirt→"libvirt-s390x-vpn-virt".LeaseType()now mapsClusterProfileLibvirtS390xVPNVirt→"libvirt-s390x-vpn-virt-quota-slice".LeaseTypeFromClusterType()now accepts"libvirt-s390x-vpn-virt"and converts it to the corresponding-quota-slicelease type.Impact
CI configuration can reference
libvirt-s390x-vpn-virtto ensure SSP e2e jobs resolve the correct cluster type and Boskos lease/quota-slice naming for the orange zone VPN environment (with host and Boskos lease resource details planned in a follow-up).