karmada/pkg/controllers/util/controller_config.go

10 lines
258 B
Go

package util
import "k8s.io/client-go/rest"
// ControllerConfig defines the common configuration shared by most of controllers.
type ControllerConfig struct {
// HeadClusterConfig holds the configuration of head cluster.
HeadClusterConfig *rest.Config
}