Documentation
¶
Index ¶
Constants ¶
const (
// ControllerName is the controller name that will be used when reporting events.
ControllerName = "membercluster-status-controller"
)
const WorkStatusControllerName = "work-status-controller"
WorkStatusControllerName is the controller name that will be used when reporting events.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MemberClusterStatusController ¶
type MemberClusterStatusController struct { client.Client // used to operate MemberCluster resources. KubeClientSet kubernetes.Interface // used to get kubernetes resources. EventRecorder record.EventRecorder }
MemberClusterStatusController is to sync status of MemberCluster.
func (*MemberClusterStatusController) Reconcile ¶
func (c *MemberClusterStatusController) Reconcile(req controllerruntime.Request) (controllerruntime.Result, error)
Reconcile syncs status of the given member cluster. The Controller will requeue the Request to be processed again if an error is non-nil or Result.Requeue is true, otherwise upon completion it will requeue the reconcile key after the duration.
func (*MemberClusterStatusController) SetupWithManager ¶
func (c *MemberClusterStatusController) SetupWithManager(mgr controllerruntime.Manager) error
SetupWithManager creates a controller and register to controller manager.
type PropagationWorkStatusController ¶
type PropagationWorkStatusController struct { client.Client // used to operate PropagationWork resources. DynamicClient dynamic.Interface // used to fetch arbitrary resources. EventRecorder record.EventRecorder RESTMapper meta.RESTMapper KubeClientSet kubernetes.Interface // used to get kubernetes resources. InformerManager informermanager.MultiClusterInformerManager StopChan <-chan struct{} WorkerNumber int // WorkerNumber is the number of worker goroutines ObjectWatcher objectwatcher.ObjectWatcher // contains filtered or unexported fields }
PropagationWorkStatusController is to sync status of PropagationWork.
func (*PropagationWorkStatusController) Reconcile ¶
func (c *PropagationWorkStatusController) Reconcile(req controllerruntime.Request) (controllerruntime.Result, error)
Reconcile performs a full reconciliation for the object referred to by the Request. The Controller will requeue the Request to be processed again if an error is non-nil or Result.Requeue is true, otherwise upon completion it will remove the work from the queue.
func (*PropagationWorkStatusController) RunWorkQueue ¶
func (c *PropagationWorkStatusController) RunWorkQueue()
RunWorkQueue initializes worker and run it, worker will process resource asynchronously.
func (*PropagationWorkStatusController) SetupWithManager ¶
func (c *PropagationWorkStatusController) SetupWithManager(mgr controllerruntime.Manager) error
SetupWithManager creates a controller and register to controller manager.