Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func MakeDecider ¶
func MakeDecider(ctx context.Context, pa *v1alpha1.PodAutoscaler, config *autoscalerconfig.Config, svc string) *scaling.Decider
MakeDecider constructs a Decider resource from a PodAutoscaler taking into account the PA's ContainerConcurrency and the relevant autoscaling annotation.
Types ¶
type Deciders ¶
type Deciders interface { // Get accesses the Decider resource for this key, returning any errors. Get(ctx context.Context, namespace, name string) (*scaling.Decider, error) // Create adds a Decider resource for a given key, returning any errors. Create(ctx context.Context, decider *scaling.Decider) (*scaling.Decider, error) // Delete removes the Decider resource for a given key, returning any errors. Delete(ctx context.Context, namespace, name string) error // Watch registers a function to call when Decider change. Watch(watcher func(types.NamespacedName)) // Update update the Decider resource, return the new Decider or any errors. Update(ctx context.Context, decider *scaling.Decider) (*scaling.Decider, error) }
Deciders is an interface for notifying the presence or absence of autoscaling deciders.
Click to show internal directories.
Click to hide internal directories.