Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions pkg/variantregistry/ocp.go
Original file line number Diff line number Diff line change
Expand Up @@ -745,22 +745,18 @@ func (v *OCPVariantLoader) setJobTier(_ logrus.FieldLogger, variants map[string]
// not ready to make release blocking yet.
{[]string{"-vsphere-host-groups"}, "candidate"},

// Periodic MCO metal jobs and vsphere jobs are not ready for component readiness yet, marking them as candidate
{[]string{"metal-ipi-ovn-dualstack-mco-disruptive"}, "candidate"},
{[]string{"metal-ipi-ovn-ipv4-mco-disruptive"}, "candidate"},
{[]string{"metal-ipi-ovn-ipv6-mco-disruptive"}, "candidate"},
{[]string{"vsphere-mco-disruptive"}, "candidate"},

// Set MCO OCL jobs to candidate
{[]string{"e2e-aws-ovn-ocl"}, "candidate"},
{[]string{"e2e-aws-ovn-upgrade-ocl"}, "candidate"},

// All remaining 4.19/4.20 MCO disruptive jobs are not ready for component readiness yet, marking them as candidate
// All 4.19/4.20 MCO jobs default to candidate
{[]string{"machine-config-operator-release-4.19"}, "candidate"},
{[]string{"machine-config-operator-release-4.20"}, "candidate"},

// Set remaining periodic MCO jobs to standard for component readiness
{[]string{"-mco-disruptive"}, "candidate"},
// Cloud MCO disruptive jobs set to standard for component readiness
// This also includes techpreview variants
{[]string{"e2e-aws-mco-disruptive"}, "standard"},
{[]string{"e2e-azure-mco-disruptive"}, "standard"},
{[]string{"e2e-gcp-mco-disruptive"}, "standard"},
Comment thread
coderabbitai[bot] marked this conversation as resolved.

// All remaining MCO periodic jobs default to candidate
{[]string{"machine-config-operator"}, "candidate"},
Comment thread
coderabbitai[bot] marked this conversation as resolved.

// Konflux jobs aren't ready yet
{[]string{"-konflux"}, "candidate"},
Expand Down
Loading