From cad516a2c494fe157a2485ef46743a40208e2251 Mon Sep 17 00:00:00 2001 From: rambohe-ch Date: Tue, 28 May 2024 14:47:14 +0800 Subject: [PATCH] revert nodepool controller parameter that has been removed in #2007 --- cmd/yurt-manager/app/options/nodepoolcontroller.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/yurt-manager/app/options/nodepoolcontroller.go b/cmd/yurt-manager/app/options/nodepoolcontroller.go index 263752a1bbe..028d2648b90 100644 --- a/cmd/yurt-manager/app/options/nodepoolcontroller.go +++ b/cmd/yurt-manager/app/options/nodepoolcontroller.go @@ -41,6 +41,7 @@ func (n *NodePoolControllerOptions) AddFlags(fs *pflag.FlagSet) { return } + fs.BoolVar(&n.EnableSyncNodePoolConfigurations, "enable-sync-nodepool-configurations", n.EnableSyncNodePoolConfigurations, "enable to sync nodepool configurations(including labels, annotations, taints in spec) to nodes in the nodepool.") fs.Int32Var(&n.ConcurrentNodepools, "concurrent-nodepools", n.ConcurrentNodepools, "The number of node pools that are allowed to reconcile concurrently.") }