horizontalpodautoscaler

package
v1.10.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 21, 2018 License: Apache-2.0 Imports: 7 Imported by: 157

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type HorizontalPodAutoscaler added in v1.6.0

type HorizontalPodAutoscaler struct {
	ObjectMeta                      api.ObjectMeta `json:"objectMeta"`
	TypeMeta                        api.TypeMeta   `json:"typeMeta"`
	ScaleTargetRef                  ScaleTargetRef `json:"scaleTargetRef"`
	MinReplicas                     *int32         `json:"minReplicas"`
	MaxReplicas                     int32          `json:"maxReplicas"`
	CurrentCPUUtilizationPercentage *int32         `json:"currentCPUUtilizationPercentage"`
	TargetCPUUtilizationPercentage  *int32         `json:"targetCPUUtilizationPercentage"`
}

HorizontalPodAutoscaler (aka. Horizontal Pod Autoscaler)

type HorizontalPodAutoscalerDetail added in v1.6.0

type HorizontalPodAutoscalerDetail struct {
	ObjectMeta api.ObjectMeta `json:"objectMeta"`
	TypeMeta   api.TypeMeta   `json:"typeMeta"`

	ScaleTargetRef ScaleTargetRef `json:"scaleTargetRef"`

	MinReplicas *int32 `json:"minReplicas"`
	MaxReplicas int32  `json:"maxReplicas"`

	CurrentCPUUtilizationPercentage *int32 `json:"currentCPUUtilizationPercentage"`
	TargetCPUUtilizationPercentage  *int32 `json:"targetCPUUtilizationPercentage"`

	CurrentReplicas int32 `json:"currentReplicas"`
	DesiredReplicas int32 `json:"desiredReplicas"`

	LastScaleTime *v1.Time `json:"lastScaleTime"`
}

HorizontalPodAutoscalerDetail provides the presentation layer view of Kubernetes Horizontal Pod Autoscaler resource. close mapping of the autoscaling.HorizontalPodAutoscaler type with part of the *Spec and *Detail childs

func GetHorizontalPodAutoscalerDetail added in v1.6.0

func GetHorizontalPodAutoscalerDetail(client client.Interface, namespace string, name string) (*HorizontalPodAutoscalerDetail, error)

GetHorizontalPodAutoscalerDetail returns detailed information about a horizontal pod autoscaler

type HorizontalPodAutoscalerList added in v1.6.0

type HorizontalPodAutoscalerList struct {
	ListMeta api.ListMeta `json:"listMeta"`

	// Unordered list of Horizontal Pod Autoscalers.
	HorizontalPodAutoscalers []HorizontalPodAutoscaler `json:"horizontalpodautoscalers"`

	// List of non-critical errors, that occurred during resource retrieval.
	Errors []error `json:"errors"`
}

func GetHorizontalPodAutoscalerList added in v1.6.0

func GetHorizontalPodAutoscalerList(client k8sClient.Interface, nsQuery *common.NamespaceQuery) (*HorizontalPodAutoscalerList, error)

func GetHorizontalPodAutoscalerListForResource added in v1.6.0

func GetHorizontalPodAutoscalerListForResource(client k8sClient.Interface, namespace, kind, name string) (*HorizontalPodAutoscalerList, error)

type ScaleTargetRef

type ScaleTargetRef struct {
	Kind string `json:"kind"`
	Name string `json:"name"`
}

Simple mapping of an autoscaling.CrossVersionObjectReference

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL