diff --git a/pkg/operator/operator.go b/pkg/operator/operator.go index f3f444effe..95ffc58146 100644 --- a/pkg/operator/operator.go +++ b/pkg/operator/operator.go @@ -475,7 +475,6 @@ func (optr *Operator) maoConfigFromInfrastructure() (*OperatorConfig, error) { // as args) features := map[string]bool{ string(apifeatures.FeatureGateMachineAPIMigration): featureGates.Enabled(apifeatures.FeatureGateMachineAPIMigration), - string(apifeatures.FeatureGateGCPLabelsTags): featureGates.Enabled(apifeatures.FeatureGateGCPLabelsTags), string(apifeatures.FeatureGateAzureWorkloadIdentity): featureGates.Enabled(apifeatures.FeatureGateAzureWorkloadIdentity), string(apifeatures.FeatureGateVSphereMultiDisk): featureGates.Enabled(apifeatures.FeatureGateVSphereMultiDisk), string(apifeatures.FeatureGateVSphereHostVMGroupZonal): featureGates.Enabled(apifeatures.FeatureGateVSphereHostVMGroupZonal), diff --git a/pkg/operator/operator_test.go b/pkg/operator/operator_test.go index 2fc3206698..c6e28b72e2 100644 --- a/pkg/operator/operator_test.go +++ b/pkg/operator/operator_test.go @@ -42,7 +42,6 @@ const ( var ( enabledFeatureGates = []openshiftv1.FeatureGateAttributes{ {Name: apifeatures.FeatureGateMachineAPIMigration}, - {Name: apifeatures.FeatureGateGCPLabelsTags}, {Name: apifeatures.FeatureGateAzureWorkloadIdentity}, {Name: apifeatures.FeatureGateVSphereMultiDisk}, {Name: apifeatures.FeatureGateVSphereHostVMGroupZonal}, @@ -50,7 +49,6 @@ var ( enabledFeatureMap = map[string]bool{ "MachineAPIMigration": true, - "GCPLabelsTags": true, "AzureWorkloadIdentity": true, "VSphereMultiDisk": true, "VSphereHostVMGroupZonal": true, diff --git a/test/e2e/vsphere/multi-nic.go b/test/e2e/vsphere/multi-nic.go index de84942159..9cb6803de7 100644 --- a/test/e2e/vsphere/multi-nic.go +++ b/test/e2e/vsphere/multi-nic.go @@ -212,7 +212,7 @@ var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiNetworks][p } } - for k, _ := range portGroups { + for k := range portGroups { machinePortgroups = append(machinePortgroups, k) } }) @@ -264,7 +264,7 @@ var _ = Describe("[sig-cluster-lifecycle][OCPFeatureGate:VSphereMultiNetworks][p } } - for k, _ := range portGroups { + for k := range portGroups { machinePortgroups = append(machinePortgroups, k) }