From e162530876d82db4b0cfd85a67a79a018ee43a25 Mon Sep 17 00:00:00 2001 From: ehila Date: Wed, 19 Apr 2023 11:17:06 -0400 Subject: [PATCH] fix: remove feature flag for cpu partitioning no longer needed Signed-off-by: ehila --- pkg/asset/manifests/topologies.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/asset/manifests/topologies.go b/pkg/asset/manifests/topologies.go index 3ee4f452a6..dadd3df698 100644 --- a/pkg/asset/manifests/topologies.go +++ b/pkg/asset/manifests/topologies.go @@ -33,9 +33,6 @@ func determineTopologies(installConfig *types.InstallConfig) (controlPlaneTopolo } func determineCPUPartitioning(installConfig *types.InstallConfig) configv1.CPUPartitioningMode { - if installConfig.FeatureSet != configv1.TechPreviewNoUpgrade { - return configv1.CPUPartitioningNone - } switch installConfig.CPUPartitioning { case types.CPUPartitioningAllNodes: return configv1.CPUPartitioningAllNodes