mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
11 lines
259 B
Go
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)
|
|
}
|