Documentation ¶
Index ¶
Constants ¶
const (
// StatusControllerName is the controller name that will be used when reporting events.
StatusControllerName = "federated-resource-quota-status-controller"
)
const (
// SyncControllerName is the controller name that will be used when reporting events.
SyncControllerName = "federated-resource-quota-sync-controller"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StatusController ¶
type StatusController struct { client.Client // used to operate Work resources. EventRecorder record.EventRecorder }
StatusController is to collect status from work to FederatedResourceQuota.
func (*StatusController) Reconcile ¶
func (c *StatusController) Reconcile(ctx context.Context, req controllerruntime.Request) (controllerruntime.Result, error)
Reconcile performs a full reconciliation for the object referred to by the Request. The SyncController 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 (*StatusController) SetupWithManager ¶
func (c *StatusController) SetupWithManager(mgr controllerruntime.Manager) error
SetupWithManager creates a controller and register to controller manager.
type SyncController ¶
type SyncController struct { client.Client // used to operate Work resources. EventRecorder record.EventRecorder }
SyncController is to sync FederatedResourceQuota.
func (*SyncController) Reconcile ¶
func (c *SyncController) Reconcile(ctx context.Context, req controllerruntime.Request) (controllerruntime.Result, error)
Reconcile performs a full reconciliation for the object referred to by the Request. The SyncController 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 (*SyncController) SetupWithManager ¶
func (c *SyncController) SetupWithManager(mgr controllerruntime.Manager) error
SetupWithManager creates a controller and register to controller manager.