diff --git a/pkg/variantregistry/ocp.go b/pkg/variantregistry/ocp.go index 2550a01d4..89e01e8ea 100644 --- a/pkg/variantregistry/ocp.go +++ b/pkg/variantregistry/ocp.go @@ -260,9 +260,31 @@ ORDER BY j.prowjob_job_name; dur := time.Since(start) log.WithField("count", count.Load()).Infof("processed primary job list in %s", dur) + var errs []string + for jobName, variants := range variantsByJob { + if err := validateSpotCheckVariants(jobName, variants); err != nil { + errs = append(errs, err.Error()) + } + } + if len(errs) > 0 { + sort.Strings(errs) + return nil, errors.New("variant registry validation failed:\n" + strings.Join(errs, "\n")) + } + return variantsByJob, nil } +// validateSpotCheckVariants returns an error if a job has JobTier=spotcheck without both +// SpotCheckComponent and SpotCheckCapability defined. +func validateSpotCheckVariants(jobName string, variants map[string]string) error { + if strings.HasPrefix(variants[VariantJobTier], "spotcheck-") { + if variants[VariantSpotCheckComponent] == "" || variants[VariantSpotCheckCapability] == "" { + return fmt.Errorf("job %q has JobTier=%s but is missing SpotCheckComponent or SpotCheckCapability", jobName, variants[VariantJobTier]) + } + } + return nil +} + // fileVariantsToIgnore are values in the cluster-data.json that vary by run, and are not consistent for the job itself. // These are unsuited for variants. var fileVariantsToIgnore = map[string]bool{ @@ -427,34 +449,36 @@ var ( ) const ( - VariantAggregation = "Aggregation" // aggregated or none - VariantArch = "Architecture" - VariantFeatureSet = "FeatureSet" // techpreview / standard - VariantInstaller = "Installer" // ipi / upi / assisted - VariantNetwork = "Network" - VariantNetworkAccess = "NetworkAccess" // disconnected / proxy / standard - VariantNetworkStack = "NetworkStack" // ipv4 / ipv6 / dual - VariantOwner = "Owner" // eng / osd - VariantPlatform = "Platform" - VariantScheduler = "Scheduler" // realtime / standard - VariantSecurityMode = "SecurityMode" // fips / default - VariantSuite = "Suite" // parallel / serial - VariantProcedure = "Procedure" // for jobs that do a specific procedure on the cluster (etcd scaling, cpu partitioning, etc.), and then optionally run conformance - VariantJobTier = "JobTier" // specifies rare, blocking, informing, standard jobs - VariantTopology = "Topology" // ha / single / compact / external - VariantUpgrade = "Upgrade" - VariantContainerRuntime = "ContainerRuntime" // runc / crun - VariantCGroupMode = "CGroupMode" // v2 / v1 - VariantRelease = "Release" - VariantReleaseMinor = "ReleaseMinor" - VariantReleaseMajor = "ReleaseMajor" - VariantFromRelease = "FromRelease" - VariantFromReleaseMinor = "FromReleaseMinor" - VariantFromReleaseMajor = "FromReleaseMajor" - VariantLayeredProduct = "LayeredProduct" - VariantOS = "OS" - VariantDefaultValue = "default" - VariantNoValue = "none" + VariantAggregation = "Aggregation" // aggregated or none + VariantArch = "Architecture" + VariantFeatureSet = "FeatureSet" // techpreview / standard + VariantInstaller = "Installer" // ipi / upi / assisted + VariantNetwork = "Network" + VariantNetworkAccess = "NetworkAccess" // disconnected / proxy / standard + VariantNetworkStack = "NetworkStack" // ipv4 / ipv6 / dual + VariantOwner = "Owner" // eng / osd + VariantPlatform = "Platform" + VariantScheduler = "Scheduler" // realtime / standard + VariantSecurityMode = "SecurityMode" // fips / default + VariantSuite = "Suite" // parallel / serial + VariantProcedure = "Procedure" // for jobs that do a specific procedure on the cluster (etcd scaling, cpu partitioning, etc.), and then optionally run conformance + VariantJobTier = "JobTier" // specifies rare, blocking, informing, standard jobs + VariantTopology = "Topology" // ha / single / compact / external + VariantUpgrade = "Upgrade" + VariantContainerRuntime = "ContainerRuntime" // runc / crun + VariantCGroupMode = "CGroupMode" // v2 / v1 + VariantRelease = "Release" + VariantReleaseMinor = "ReleaseMinor" + VariantReleaseMajor = "ReleaseMajor" + VariantFromRelease = "FromRelease" + VariantFromReleaseMinor = "FromReleaseMinor" + VariantFromReleaseMajor = "FromReleaseMajor" + VariantLayeredProduct = "LayeredProduct" + VariantOS = "OS" + VariantSpotCheckComponent = "SpotCheckComponent" // component readiness component for spot-check jobs + VariantSpotCheckCapability = "SpotCheckCapability" // component readiness capability for spot-check jobs + VariantDefaultValue = "default" + VariantNoValue = "none" ) func (v *OCPVariantLoader) IdentifyVariants(jLog logrus.FieldLogger, jobName string) map[string]string { @@ -480,6 +504,7 @@ func (v *OCPVariantLoader) IdentifyVariants(jLog logrus.FieldLogger, jobName str setContainerRuntime, setProcedure, setOS, + setSpotCheckClassification, v.setJobTier, // Keep this near last, it relies on other variants like owner } { setter(jLog, variants, jobName) @@ -726,29 +751,69 @@ func (v *OCPVariantLoader) setRelease(logger logrus.FieldLogger, variants map[st } } +// setSpotCheckClassification identifies jobs that should be evaluated as spot-check jobs +// in Component Readiness. These jobs run infrequently ("rare" tier historically) and +// must fully pass at least once in the sample window. (with retries if needed) +// They are intended for stable, non-core functionality that does not need in depth +// statistical regression monitoring. +// +// The SpotCheckComponent and SpotCheckCapability variants control where these synthetic +// results appear in the component readiness report. +// +// Be sure to use real Component names from OCPBUGS. +func setSpotCheckClassification(_ logrus.FieldLogger, variants map[string]string, jobName string) { + jobNameLower := strings.ToLower(jobName) + + spotCheckPatterns := []struct { + substrings []string + component string + capability string + }{ + {[]string{"-cpu-partitioning"}, "Node / Kubelet", "CPU Partitioning"}, + {[]string{"-etcd-scaling"}, "Etcd", "Scaling"}, + } + + for _, p := range spotCheckPatterns { + allMatch := true + for _, sub := range p.substrings { + if !strings.Contains(jobNameLower, sub) { + allMatch = false + break + } + } + if allMatch { + variants[VariantSpotCheckComponent] = p.component + variants[VariantSpotCheckCapability] = p.capability + return + } + } +} + // setJobTier sets the jobTier for a job, with values like this: // -// blocking: blocking job on payloads, covered by component readiness -// informing: informing job on payloads, covered by component readiness -// standard: should be visible in default views (component readiness, sippy), covered by component readiness -// rare: highly reliable jobs that run at a reduced frequency -// candidate: not covered by component readiness, but may be promoted in the future -// hidden: data should still be synced, but not shown by default -// excluded: data should not be synced, and excluded from all views +// blocking: blocking job on payloads, covered by component readiness +// informing: informing job on payloads, covered by component readiness +// standard: should be visible in default views (component readiness, sippy), covered by component readiness +// spotcheck: jobs evaluated by spot-check analysis (job pass/fail, not junit); views opt in via JobTier include +// candidate: not covered by component readiness, but may be promoted in the future +// hidden: data should still be synced, but not shown by default +// excluded: data should not be synced, and excluded from all views // // Note: blocking/informing/standard tiers may be downgraded to candidate by // adjustJobTierBasedOnView if the job's variants don't match the release-main view. func (v *OCPVariantLoader) setJobTier(_ logrus.FieldLogger, variants map[string]string, jobName string) { + // Jobs classified as spot-check get the spotcheck-30d tier automatically. + if _, ok := variants[VariantSpotCheckComponent]; ok { + variants[VariantJobTier] = "spotcheck-30d" + return + } + jobNameLower := strings.ToLower(jobName) jobTierPatterns := []struct { substrings []string jobTier string }{ - // Rarely run - {[]string{"-cpu-partitioning"}, "rare"}, - {[]string{"-etcd-scaling"}, "rare"}, - // QE jobs allowlisted for Component Readiness {[]string{"-automated-release"}, "standard"}, diff --git a/pkg/variantregistry/ocp_test.go b/pkg/variantregistry/ocp_test.go index 119a25703..291e68a54 100644 --- a/pkg/variantregistry/ocp_test.go +++ b/pkg/variantregistry/ocp_test.go @@ -2204,6 +2204,66 @@ func TestVariantSyncer(t *testing.T) { VariantOS: "unknown", }, }, + { + job: "periodic-ci-openshift-release-main-nightly-4.18-e2e-aws-ovn-cpu-partitioning", + expected: map[string]string{ + VariantRelease: "4.18", + VariantReleaseMajor: "4", + VariantReleaseMinor: "18", + VariantArch: "amd64", + VariantInstaller: "ipi", + VariantPlatform: "aws", + VariantNetwork: "ovn", + VariantNetworkStack: "ipv4", + VariantOwner: "eng", + VariantTopology: "ha", + VariantSuite: "unknown", + VariantUpgrade: VariantNoValue, + VariantProcedure: "cpu-partitioning", + VariantJobTier: "spotcheck-30d", + VariantAggregation: VariantNoValue, + VariantSecurityMode: VariantDefaultValue, + VariantFeatureSet: VariantDefaultValue, + VariantNetworkAccess: VariantDefaultValue, + VariantScheduler: VariantDefaultValue, + VariantContainerRuntime: "crun", + VariantCGroupMode: "v2", + VariantLayeredProduct: VariantNoValue, + VariantOS: "rhcos9", + VariantSpotCheckComponent: "Node / Kubelet", + VariantSpotCheckCapability: "CPU Partitioning", + }, + }, + { + job: "periodic-ci-openshift-release-main-nightly-4.18-e2e-gcp-ovn-etcd-scaling", + expected: map[string]string{ + VariantRelease: "4.18", + VariantReleaseMajor: "4", + VariantReleaseMinor: "18", + VariantArch: "amd64", + VariantInstaller: "ipi", + VariantPlatform: "gcp", + VariantNetwork: "ovn", + VariantNetworkStack: "ipv4", + VariantOwner: "eng", + VariantTopology: "ha", + VariantSuite: "etcd-scaling", + VariantUpgrade: VariantNoValue, + VariantProcedure: "etcd-scaling", + VariantJobTier: "spotcheck-30d", + VariantAggregation: VariantNoValue, + VariantSecurityMode: VariantDefaultValue, + VariantFeatureSet: VariantDefaultValue, + VariantNetworkAccess: VariantDefaultValue, + VariantScheduler: VariantDefaultValue, + VariantContainerRuntime: "crun", + VariantCGroupMode: "v2", + VariantLayeredProduct: VariantNoValue, + VariantOS: "rhcos9", + VariantSpotCheckComponent: "Etcd", + VariantSpotCheckCapability: "Scaling", + }, + }, } for _, test := range tests { t.Run(test.job, func(t *testing.T) { @@ -2573,16 +2633,16 @@ func TestAdjustJobTierBasedOnView(t *testing.T) { expectedTier: "excluded", }, { - name: "rare job is not adjusted even with non-matching variants", + name: "spotcheck job is not adjusted even with non-matching variants", variants: map[string]string{ VariantRelease: "4.22", - VariantJobTier: "rare", + VariantJobTier: "spotcheck-30d", VariantArch: "s390x", VariantPlatform: "rosa", VariantNetwork: "sdn", VariantOwner: "chaos", }, - expectedTier: "rare", + expectedTier: "spotcheck-30d", }, { name: "job with no release is not adjusted", diff --git a/pkg/variantregistry/snapshot.go b/pkg/variantregistry/snapshot.go index 816cf296e..463c99902 100644 --- a/pkg/variantregistry/snapshot.go +++ b/pkg/variantregistry/snapshot.go @@ -1,7 +1,9 @@ package variantregistry import ( + "fmt" "os" + "sort" "strings" "github.com/sirupsen/logrus" @@ -34,6 +36,7 @@ func NewVariantSnapshot(config *v1.SippyConfig, views []crview.View, syntheticRe func (s *VariantSnapshot) Identify() (JobVariants, error) { newVariants := map[string]map[string]string{} variantSyncer := OCPVariantLoader{config: s.config, views: s.views, syntheticReleaseJobOverrides: s.syntheticReleaseJobOverrides} + var errs []string for _, releaseCfg := range s.config.Releases { for job := range releaseCfg.Jobs { if isIgnoredJob(job) { @@ -42,10 +45,19 @@ func (s *VariantSnapshot) Identify() (JobVariants, error) { if _, done := newVariants[job]; done { continue } - newVariants[job] = variantSyncer.CalculateVariantsForJob(s.log, job, nil) + variants := variantSyncer.CalculateVariantsForJob(s.log, job, nil) + newVariants[job] = variants + if err := validateSpotCheckVariants(job, variants); err != nil { + errs = append(errs, err.Error()) + } } } + if len(errs) > 0 { + sort.Strings(errs) + return nil, fmt.Errorf("variant registry validation failed:\n%s", strings.Join(errs, "\n")) + } + return newVariants, nil } diff --git a/pkg/variantregistry/snapshot.yaml b/pkg/variantregistry/snapshot.yaml index 2a9165d6a..8ee049c09 100644 --- a/pkg/variantregistry/snapshot.yaml +++ b/pkg/variantregistry/snapshot.yaml @@ -257132,7 +257132,7 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-aws-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -257146,6 +257146,8 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "12" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -257615,7 +257617,7 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-azure-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -257629,6 +257631,8 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "12" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -257834,7 +257838,7 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -257848,6 +257852,8 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "12" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -258510,7 +258516,7 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -258524,6 +258530,8 @@ periodic-ci-openshift-release-main-nightly-4.12-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "12" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -259003,7 +259011,7 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -259017,6 +259025,8 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "13" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -259027,7 +259037,7 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-aws-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -259041,6 +259051,8 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "13" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -259486,7 +259498,7 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-azure-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -259500,6 +259512,8 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "13" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -259705,7 +259719,7 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -259719,6 +259733,8 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "13" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -260483,7 +260499,7 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -260497,6 +260513,8 @@ periodic-ci-openshift-release-main-nightly-4.13-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "13" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -261097,7 +261115,7 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -261111,6 +261129,8 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "14" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -261121,7 +261141,7 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-aws-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -261135,6 +261155,8 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "14" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -261700,7 +261722,7 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-azure-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -261714,6 +261736,8 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "14" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -261943,7 +261967,7 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -261957,6 +261981,8 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "14" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -262649,7 +262675,7 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -262663,6 +262689,8 @@ periodic-ci-openshift-release-main-nightly-4.14-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "14" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -263365,7 +263393,7 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -263379,6 +263407,8 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "15" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -263437,7 +263467,7 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-aws-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -263451,6 +263481,8 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "15" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -263992,7 +264024,7 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-azure-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -264006,6 +264038,8 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "15" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -264259,7 +264293,7 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -264273,6 +264307,8 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "15" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -264965,7 +265001,7 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -264979,6 +265015,8 @@ periodic-ci-openshift-release-main-nightly-4.15-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "15" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -265678,7 +265716,7 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -265692,6 +265730,8 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "16" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -265750,7 +265790,7 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-aws-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -265764,6 +265804,8 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "16" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -266308,7 +266350,7 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-azure-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -266322,6 +266364,8 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "16" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -266596,7 +266640,7 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -266610,6 +266654,8 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "16" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -267925,7 +267971,7 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -267939,6 +267985,8 @@ periodic-ci-openshift-release-main-nightly-4.16-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "16" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -268780,7 +268828,7 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -268794,6 +268842,8 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "17" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -268852,7 +268902,7 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-aws-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -268866,6 +268916,8 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "17" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -269383,7 +269435,7 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-azure-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -269397,6 +269449,8 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "17" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -269623,7 +269677,7 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -269637,6 +269691,8 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "17" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -270977,7 +271033,7 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -270991,6 +271047,8 @@ periodic-ci-openshift-release-main-nightly-4.17-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "17" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -272005,7 +272063,7 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -272019,6 +272077,8 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "18" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -272077,7 +272137,7 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -272091,6 +272151,8 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "18" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -272803,7 +272865,7 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -272817,6 +272879,8 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "18" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -273187,7 +273251,7 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -273201,6 +273265,8 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "18" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -275411,7 +275477,7 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -275425,6 +275491,8 @@ periodic-ci-openshift-release-main-nightly-4.18-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "18" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -276518,7 +276586,7 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -276532,6 +276600,8 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "19" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -276590,7 +276660,7 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -276604,6 +276674,8 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "19" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -277244,7 +277316,7 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -277258,6 +277330,8 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "19" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -277556,7 +277630,7 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -277570,6 +277644,8 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "19" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -279872,7 +279948,7 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -279886,6 +279962,8 @@ periodic-ci-openshift-release-main-nightly-4.19-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "19" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -281075,7 +281153,7 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -281089,6 +281167,8 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "20" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -281147,7 +281227,7 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -281161,6 +281241,8 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "20" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -281825,7 +281907,7 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -281839,6 +281921,8 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "20" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -282161,7 +282245,7 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -282175,6 +282259,8 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "20" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -284647,7 +284733,7 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -284661,6 +284747,8 @@ periodic-ci-openshift-release-main-nightly-4.20-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "20" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -286018,7 +286106,7 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -286032,6 +286120,8 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "21" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -286090,7 +286180,7 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -286104,6 +286194,8 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "21" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -286942,7 +287034,7 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -286956,6 +287048,8 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "21" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -287350,7 +287444,7 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -287364,6 +287458,8 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "21" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -290106,7 +290202,7 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -290120,6 +290216,8 @@ periodic-ci-openshift-release-main-nightly-4.21-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "21" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -291717,7 +291815,7 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -291731,6 +291829,8 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "22" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -291837,7 +291937,7 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -291851,6 +291951,8 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "22" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -292857,7 +292959,7 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -292871,6 +292973,8 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "22" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -293289,7 +293393,7 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -293303,6 +293407,8 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "22" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -296929,7 +297035,7 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -296943,6 +297049,8 @@ periodic-ci-openshift-release-main-nightly-4.22-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "22" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -298660,7 +298768,7 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -298674,6 +298782,8 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "23" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -298780,7 +298890,7 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -298794,6 +298904,8 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "23" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -299752,7 +299864,7 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -299766,6 +299878,8 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "23" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -300184,7 +300298,7 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -300198,6 +300312,8 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "23" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -303728,7 +303844,7 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -303742,6 +303858,8 @@ periodic-ci-openshift-release-main-nightly-4.23-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "23" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -305506,7 +305624,7 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-aws-ovn-cpu-partitioning: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -305520,6 +305638,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-aws-ovn-cpu-partitioning: ReleaseMinor: "0" Scheduler: default SecurityMode: default + SpotCheckCapability: CPU Partitioning + SpotCheckComponent: Node / Kubelet Suite: unknown Topology: ha Upgrade: none @@ -305626,7 +305746,7 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-aws-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -305640,6 +305760,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-aws-ovn-etcd-scaling: ReleaseMinor: "0" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -306796,7 +306918,7 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-azure-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -306810,6 +306932,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-azure-ovn-etcd-scaling: ReleaseMinor: "0" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -307228,7 +307352,7 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-gcp-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -307242,6 +307366,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-gcp-ovn-etcd-scaling: ReleaseMinor: "0" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -310850,7 +310976,7 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-vsphere-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -310864,6 +310990,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-vsphere-ovn-etcd-scaling: ReleaseMinor: "0" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -342133,7 +342261,7 @@ periodic-ci-shiftstack-ci-release-4.14-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -342147,6 +342275,8 @@ periodic-ci-shiftstack-ci-release-4.14-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "14" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -342637,7 +342767,7 @@ periodic-ci-shiftstack-ci-release-4.16-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -342651,6 +342781,8 @@ periodic-ci-shiftstack-ci-release-4.16-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "16" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -343045,7 +343177,7 @@ periodic-ci-shiftstack-ci-release-4.17-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: runc FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -343059,6 +343191,8 @@ periodic-ci-shiftstack-ci-release-4.17-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "17" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -343528,7 +343662,7 @@ periodic-ci-shiftstack-ci-release-4.18-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -343542,6 +343676,8 @@ periodic-ci-shiftstack-ci-release-4.18-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "18" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -344035,7 +344171,7 @@ periodic-ci-shiftstack-ci-release-4.19-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -344049,6 +344185,8 @@ periodic-ci-shiftstack-ci-release-4.19-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "19" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -344542,7 +344680,7 @@ periodic-ci-shiftstack-ci-release-4.20-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -344556,6 +344694,8 @@ periodic-ci-shiftstack-ci-release-4.20-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "20" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -345049,7 +345189,7 @@ periodic-ci-shiftstack-ci-release-4.21-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -345063,6 +345203,8 @@ periodic-ci-shiftstack-ci-release-4.21-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "21" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none @@ -345556,7 +345698,7 @@ periodic-ci-shiftstack-ci-release-4.22-e2e-openstack-ovn-etcd-scaling: ContainerRuntime: crun FeatureSet: default Installer: ipi - JobTier: rare + JobTier: spotcheck-30d LayeredProduct: none Network: ovn NetworkAccess: default @@ -345570,6 +345712,8 @@ periodic-ci-shiftstack-ci-release-4.22-e2e-openstack-ovn-etcd-scaling: ReleaseMinor: "22" Scheduler: default SecurityMode: default + SpotCheckCapability: Scaling + SpotCheckComponent: Etcd Suite: etcd-scaling Topology: ha Upgrade: none