From 47f23271b5570e8851f073d1f92d016c943ce192 Mon Sep 17 00:00:00 2001 From: Jan Chaloupka Date: Thu, 16 May 2019 13:54:13 +0200 Subject: [PATCH] Feature gate HC by cluster feature gate object Machine API created its own feature gate object key and diverged from all other components expecting 'cluster' key instead. Renaming the key to 'cluster' to minimize the confusion. --- pkg/operator/featuresgate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/operator/featuresgate.go b/pkg/operator/featuresgate.go index 92c8d38006..655c47ca93 100644 --- a/pkg/operator/featuresgate.go +++ b/pkg/operator/featuresgate.go @@ -8,7 +8,7 @@ import ( const ( // MachineAPIFeatureGateName contains a name of the machine API FeatureGate object - MachineAPIFeatureGateName = "machine-api" + MachineAPIFeatureGateName = "cluster" // FeatureGateMachineHealthCheck contains the name of the MachineHealthCheck feature gate FeatureGateMachineHealthCheck = "MachineHealthCheck"