File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -8,25 +8,19 @@ import (
88 "sigs.k8s.io/controller-runtime/pkg/manager"
99
1010 "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/common/pkg/capi/clustertopology/handlers"
11- "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/pkg/handlers/generic/mutation/controlplanevirtualip"
1211 nutanixclusterconfig "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/pkg/handlers/nutanix/clusterconfig"
1312 nutanixmutation "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/pkg/handlers/nutanix/mutation"
1413 nutanixworkerconfig "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/pkg/handlers/nutanix/workerconfig"
1514 "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/pkg/handlers/options"
1615 nutanixmutationvprev "github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/pkg/handlers/v3/nutanix/mutation"
1716)
1817
19- type Handlers struct {
20- // kubeVIPConfig holds the configuration for the kube-vip control-plane virtual IP.
21- controlPlaneVirtualIPConfig * controlplanevirtualip.Config
22- }
18+ type Handlers struct {}
2319
2420func New (
25- globalOptions * options.GlobalOptions ,
21+ _ * options.GlobalOptions ,
2622) * Handlers {
27- return & Handlers {
28- controlPlaneVirtualIPConfig : & controlplanevirtualip.Config {GlobalOptions : globalOptions },
29- }
23+ return & Handlers {}
3024}
3125
3226func (h * Handlers ) AllHandlers (mgr manager.Manager ) []handlers.Named {
@@ -40,6 +34,4 @@ func (h *Handlers) AllHandlers(mgr manager.Manager) []handlers.Named {
4034 }
4135}
4236
43- func (h * Handlers ) AddFlags (flagSet * pflag.FlagSet ) {
44- h .controlPlaneVirtualIPConfig .AddFlags (flagSet )
45- }
37+ func (h * Handlers ) AddFlags (_ * pflag.FlagSet ) {}
You can’t perform that action at this time.
0 commit comments