kubekey/pkg/controller/add_k2cluster.go
2020-04-26 10:40:50 +08:00

11 lines
259 B
Go

package controller
import (
"github.com/pixiake/kubekey/pkg/controller/k2cluster"
)
func init() {
// AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
AddToManagerFuncs = append(AddToManagerFuncs, k2cluster.Add)
}