mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
Signed-off-by: joyceliu <joyceliu@yunify.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
16 lines
319 B
Go
16 lines
319 B
Go
//go:build builtin
|
|
// +build builtin
|
|
|
|
package core
|
|
|
|
import (
|
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
|
|
|
"github.com/kubesphere/kubekey/v4/cmd/controller-manager/app/options"
|
|
)
|
|
|
|
func init() {
|
|
utilruntime.Must(options.Register(&PlaybookReconciler{}))
|
|
utilruntime.Must(options.Register(&PlaybookWebhook{}))
|
|
}
|