diff --git a/test/framework/cluster.go b/test/framework/cluster.go index ab978f22d4e7..b92f6d13e70a 100644 --- a/test/framework/cluster.go +++ b/test/framework/cluster.go @@ -122,10 +122,8 @@ func NewClusterE2ETest(t T, provider Provider, opts ...ClusterE2ETestOpt) *Clust // For kindless management upgrade task // Remove this once we remove feature flag for ExpSelfManagedAPIUpgrade. - if provider.Name() == constants.VSphereProviderName || provider.Name() == constants.CloudStackProviderName || provider.Name() == constants.TinkerbellProviderName || provider.Name() == constants.SnowProviderName { - opts = append(opts, WithEnvVar(features.ExperimentalSelfManagedClusterUpgradeGate, "true")) - opts = append(opts, WithEnvVar(features.ExperimentalSelfManagedClusterUpgradeEnvVar, "true")) - } + opts = append(opts, WithEnvVar(features.ExperimentalSelfManagedClusterUpgradeGate, "true")) + opts = append(opts, WithEnvVar(features.ExperimentalSelfManagedClusterUpgradeEnvVar, "true")) for _, opt := range opts { opt(e)