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
1 change: 1 addition & 0 deletions pkg/variantregistry/ocp.go
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,7 @@ var componentCapabilityPatterns = []componentCapabilityEntry{
{[]string{"-cpu-partitioning"}, "Node / Kubelet", "CPU Partitioning", "spotcheck-30d"},
{[]string{"-etcd-scaling"}, "Etcd", "Scaling", "spotcheck-30d"},
{[]string{"-aws-ovn-installer-dualstack"}, "Installer", "AWSDualStackInstall", "candidate"},
{[]string{"-iso-no-registry"}, "Installer / Agent based installation", "NoRegistryClusterInstall", "candidate"},
}

// setComponentAndCapability identifies the component and capability owner for a job.
Expand Down
30 changes: 30 additions & 0 deletions pkg/variantregistry/ocp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2294,6 +2294,36 @@ func TestVariantSyncer(t *testing.T) {
VariantCapability: "AWSDualStackInstall",
},
},
{
job: "periodic-ci-openshift-release-main-nightly-5.0-e2e-agent-compact-iso-no-registry-techpreview",
expected: map[string]string{
VariantRelease: "5.0",
VariantReleaseMajor: "5",
VariantReleaseMinor: "0",
VariantArch: "amd64",
VariantInstaller: "agent",
VariantPlatform: "metal",
VariantNetwork: "ovn",
VariantNetworkStack: "ipv4",
VariantOwner: "eng",
VariantTopology: "compact",
VariantSuite: "unknown",
VariantUpgrade: VariantNoValue,
VariantProcedure: VariantNoValue,
VariantJobTier: "candidate",
VariantAggregation: VariantNoValue,
VariantSecurityMode: VariantDefaultValue,
VariantFeatureSet: "techpreview",
VariantNetworkAccess: VariantDefaultValue,
VariantScheduler: VariantDefaultValue,
VariantContainerRuntime: "crun",
VariantCGroupMode: "v2",
VariantLayeredProduct: VariantNoValue,
VariantOS: "rhcos10",
VariantComponent: "Installer / Agent based installation",
VariantCapability: "NoRegistryClusterInstall",
},
},
}
for _, test := range tests {
t.Run(test.job, func(t *testing.T) {
Expand Down
8 changes: 8 additions & 0 deletions pkg/variantregistry/snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270294,6 +270294,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-agent-compact-iso-no-registry
Aggregation: none
Architecture: amd64
CGroupMode: v2
Capability: NoRegistryClusterInstall
Component: Installer / Agent based installation
ContainerRuntime: crun
FeatureSet: techpreview
Installer: agent
Expand Down Expand Up @@ -270341,6 +270343,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-agent-ha-dualstack-iso-no-reg
Aggregation: none
Architecture: amd64
CGroupMode: v2
Capability: NoRegistryClusterInstall
Component: Installer / Agent based installation
ContainerRuntime: crun
FeatureSet: techpreview
Installer: agent
Expand All @@ -270365,6 +270369,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-agent-ha5-dualstack-iso-no-re
Aggregation: none
Architecture: amd64
CGroupMode: v2
Capability: NoRegistryClusterInstall
Component: Installer / Agent based installation
ContainerRuntime: crun
FeatureSet: techpreview
Installer: agent
Expand Down Expand Up @@ -270550,6 +270556,8 @@ periodic-ci-openshift-release-main-nightly-5.0-e2e-agent-sno-ipv4-iso-no-registr
Aggregation: none
Architecture: amd64
CGroupMode: v2
Capability: NoRegistryClusterInstall
Component: Installer / Agent based installation
ContainerRuntime: crun
FeatureSet: techpreview
Installer: agent
Expand Down