From bce1d5db41ed838a07e82899001394ac539c9a33 Mon Sep 17 00:00:00 2001 From: Pankti Shah <58618433+panktishah26@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:42:36 -0700 Subject: [PATCH] Enable kindless upgrade feature for all the providers (#6859) --- test/framework/cluster.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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)