Documentation ¶
Index ¶
- Constants
- type HPAReplicasSyncer
- func (r *HPAReplicasSyncer) Create(e event.CreateEvent) bool
- func (r *HPAReplicasSyncer) Delete(e event.DeleteEvent) bool
- func (r *HPAReplicasSyncer) Generic(e event.GenericEvent) bool
- func (r *HPAReplicasSyncer) Reconcile(ctx context.Context, req controllerruntime.Request) (controllerruntime.Result, error)
- func (r *HPAReplicasSyncer) SetupWithManager(mgr controllerruntime.Manager) error
- func (r *HPAReplicasSyncer) Update(e event.UpdateEvent) bool
Constants ¶
View Source
const (
// ControllerName is the controller name that will be used when reporting events.
ControllerName = "hpa-replicas-syncer"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HPAReplicasSyncer ¶
type HPAReplicasSyncer struct { Client client.Client DynamicClient dynamic.Interface RESTMapper meta.RESTMapper ScaleClient scale.ScalesGetter // contains filtered or unexported fields }
HPAReplicasSyncer is to sync replicas from status of HPA to resource template.
func (*HPAReplicasSyncer) Create ¶
func (r *HPAReplicasSyncer) Create(e event.CreateEvent) bool
func (*HPAReplicasSyncer) Delete ¶
func (r *HPAReplicasSyncer) Delete(e event.DeleteEvent) bool
func (*HPAReplicasSyncer) Generic ¶
func (r *HPAReplicasSyncer) Generic(e event.GenericEvent) bool
func (*HPAReplicasSyncer) Reconcile ¶
func (r *HPAReplicasSyncer) Reconcile(ctx context.Context, 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 (*HPAReplicasSyncer) SetupWithManager ¶
func (r *HPAReplicasSyncer) SetupWithManager(mgr controllerruntime.Manager) error
SetupWithManager creates a controller and register to controller manager.
func (*HPAReplicasSyncer) Update ¶
func (r *HPAReplicasSyncer) Update(e event.UpdateEvent) bool
Click to show internal directories.
Click to hide internal directories.