From 144781a7d42738ab9ff1016e7ae3605f2eb087f1 Mon Sep 17 00:00:00 2001 From: sp-yduck Date: Thu, 9 Nov 2023 00:39:59 +0900 Subject: [PATCH] remove random plugin --- cloud/scheduler/plugins/registry.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cloud/scheduler/plugins/registry.go b/cloud/scheduler/plugins/registry.go index 5c85d96..00fe773 100644 --- a/cloud/scheduler/plugins/registry.go +++ b/cloud/scheduler/plugins/registry.go @@ -10,7 +10,6 @@ import ( "github.com/sp-yduck/cluster-api-provider-proxmox/cloud/scheduler/plugins/nodename" "github.com/sp-yduck/cluster-api-provider-proxmox/cloud/scheduler/plugins/noderesource" "github.com/sp-yduck/cluster-api-provider-proxmox/cloud/scheduler/plugins/overcommit" - "github.com/sp-yduck/cluster-api-provider-proxmox/cloud/scheduler/plugins/random" "github.com/sp-yduck/cluster-api-provider-proxmox/cloud/scheduler/plugins/regex" ) @@ -72,7 +71,6 @@ func NewNodeFilterPlugins(config map[string]PluginConfig) []framework.NodeFilter func NewNodeScorePlugins(config map[string]PluginConfig) []framework.NodeScorePlugin { pls := []framework.NodeScorePlugin{ - &random.Random{}, &noderesource.NodeResource{}, } plugins := []framework.NodeScorePlugin{}