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-ocp-virt cluster profile
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 16 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (16 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.
| ClusterProfileLibvirtS390xAmd64 ClusterProfile = "libvirt-s390x-amd64" | ||
| ClusterProfileLibvirtS390xVPN ClusterProfile = "libvirt-s390x-vpn" | ||
| ClusterProfileLibvirtS390xVPNOZ ClusterProfile = "libvirt-s390x-vpn-oz" | ||
| ClusterProfileLibvirtS390xVPNSSP ClusterProfile = "libvirt-s390x-vpn-ssp" |
There was a problem hiding this comment.
@Davo911 thanks for the PR. The idea is to use the profile not only in the ssp operator, so in another components. What about another naming convention, like ClusterProfileLibvirtS390xVPNOcpVirt?
There was a problem hiding this comment.
@bear-redhat, to avoid any confusion: this is for the end-to-end tests. For unit tests, we'll need the approach we discussed regarding the compute node.
There was a problem hiding this comment.
in that case I agree, the naming should be more inclusive
I'm fine with OcpVirt as suffix
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
25bc2e2 to
4d5370d
Compare
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 ci-tools cluster profile API to support an additional s390x “orange zone” VPN libvirt environment intended for SSP e2e functional testing. Concretely, it introduces the new cluster profile
libvirt-s390x-vpn-ocp-virtso CI configuration and lease lookup logic can recognize it and map it to the correct cluster type and Boskos quota-slice naming.Changes
pkg/api/clusterprofile.go
ClusterProfileconstant:ClusterProfileLibvirtS390xVPNOCPVirt = "libvirt-s390x-vpn-ocp-virt"ClusterProfiles()so it’s considered a valid/accepted profile.ClusterType()maps the profile to cluster type stringlibvirt-s390x-vpn-ocp-virtLeaseType()maps it to quota-slicelibvirt-s390x-vpn-ocp-virt-quota-sliceLeaseTypeFromClusterType()acceptslibvirt-s390x-vpn-ocp-virtand derives the corresponding-quota-slicelease typeImpact
CI users can reference the new
libvirt-s390x-vpn-ocp-virtcluster profile in job configuration to have ci-operator-style infrastructure provisioning correctly resolve the corresponding cluster type and Boskos lease/quota-slice naming for the SSP-focused s390x VPN lane (host and Boskos resource details are expected in a follow-up change).