Documentation ¶
Index ¶
- Constants
- Variables
- func Resource(resource string) schema.GroupResource
- type ContainerResourceMetricSource
- type ContainerResourceMetricStatus
- type CrossVersionObjectReference
- type ExternalMetricSource
- type ExternalMetricStatus
- type HPAScalingPolicy
- type HPAScalingRules
- type HorizontalPodAutoscaler
- func (v *HorizontalPodAutoscaler) GroupVersionKind() schema.GroupVersionKind
- func (v HorizontalPodAutoscaler) MarshalEasyJSON(w *jwriter.Writer)
- func (v HorizontalPodAutoscaler) MarshalJSON() ([]byte, error)
- func (v *HorizontalPodAutoscaler) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *HorizontalPodAutoscaler) UnmarshalJSON(data []byte) error
- type HorizontalPodAutoscalerBehavior
- type HorizontalPodAutoscalerCondition
- func (v HorizontalPodAutoscalerCondition) MarshalEasyJSON(w *jwriter.Writer)
- func (v HorizontalPodAutoscalerCondition) MarshalJSON() ([]byte, error)
- func (v *HorizontalPodAutoscalerCondition) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *HorizontalPodAutoscalerCondition) UnmarshalJSON(data []byte) error
- type HorizontalPodAutoscalerList
- func (v *HorizontalPodAutoscalerList) GroupVersionKind() schema.GroupVersionKind
- func (v HorizontalPodAutoscalerList) MarshalEasyJSON(w *jwriter.Writer)
- func (v HorizontalPodAutoscalerList) MarshalJSON() ([]byte, error)
- func (v *HorizontalPodAutoscalerList) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *HorizontalPodAutoscalerList) UnmarshalJSON(data []byte) error
- type HorizontalPodAutoscalerSpec
- type HorizontalPodAutoscalerStatus
- type MetricIdentifier
- type MetricSpec
- type MetricStatus
- type MetricTarget
- type MetricValueStatus
- type ObjectMetricSource
- type ObjectMetricStatus
- type PodsMetricSource
- type PodsMetricStatus
- type ResourceMetricSource
- type ResourceMetricStatus
Constants ¶
const GroupName = "autoscaling"
GroupName is the group name use in this package
Variables ¶
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v2"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type ContainerResourceMetricSource ¶
type ContainerResourceMetricSource struct { // container is the name of the container in the pods of the scaling target // Required: true Container *string `json:"container"` // name is the name of the resource in question. // Required: true Name *string `json:"name"` // target specifies the target value for the given metric // Required: true Target *MetricTarget `json:"target"` }
ContainerResourceMetricSource ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.
swagger:model ContainerResourceMetricSource
func (ContainerResourceMetricSource) MarshalEasyJSON ¶
func (v ContainerResourceMetricSource) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ContainerResourceMetricSource) MarshalJSON ¶
func (v ContainerResourceMetricSource) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ContainerResourceMetricSource) UnmarshalEasyJSON ¶
func (v *ContainerResourceMetricSource) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ContainerResourceMetricSource) UnmarshalJSON ¶
func (v *ContainerResourceMetricSource) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ContainerResourceMetricStatus ¶
type ContainerResourceMetricStatus struct { // Container is the name of the container in the pods of the scaling target // Required: true Container *string `json:"container"` // current contains the current value for the given metric // Required: true Current *MetricValueStatus `json:"current"` // Name is the name of the resource in question. // Required: true Name *string `json:"name"` }
ContainerResourceMetricStatus ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
swagger:model ContainerResourceMetricStatus
func (ContainerResourceMetricStatus) MarshalEasyJSON ¶
func (v ContainerResourceMetricStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ContainerResourceMetricStatus) MarshalJSON ¶
func (v ContainerResourceMetricStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ContainerResourceMetricStatus) UnmarshalEasyJSON ¶
func (v *ContainerResourceMetricStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ContainerResourceMetricStatus) UnmarshalJSON ¶
func (v *ContainerResourceMetricStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type CrossVersionObjectReference ¶
type CrossVersionObjectReference struct { // API version of the referent APIVersion string `json:"apiVersion,omitempty"` // Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" // Required: true Kind *string `json:"kind"` // Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names // Required: true Name *string `json:"name"` }
CrossVersionObjectReference CrossVersionObjectReference contains enough information to let you identify the referred resource.
swagger:model CrossVersionObjectReference
func (CrossVersionObjectReference) MarshalEasyJSON ¶
func (v CrossVersionObjectReference) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (CrossVersionObjectReference) MarshalJSON ¶
func (v CrossVersionObjectReference) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*CrossVersionObjectReference) UnmarshalEasyJSON ¶
func (v *CrossVersionObjectReference) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*CrossVersionObjectReference) UnmarshalJSON ¶
func (v *CrossVersionObjectReference) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ExternalMetricSource ¶
type ExternalMetricSource struct { // metric identifies the target metric by name and selector // Required: true Metric *MetricIdentifier `json:"metric"` // target specifies the target value for the given metric // Required: true Target *MetricTarget `json:"target"` }
ExternalMetricSource ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).
swagger:model ExternalMetricSource
func (ExternalMetricSource) MarshalEasyJSON ¶
func (v ExternalMetricSource) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ExternalMetricSource) MarshalJSON ¶
func (v ExternalMetricSource) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ExternalMetricSource) UnmarshalEasyJSON ¶
func (v *ExternalMetricSource) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ExternalMetricSource) UnmarshalJSON ¶
func (v *ExternalMetricSource) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ExternalMetricStatus ¶
type ExternalMetricStatus struct { // current contains the current value for the given metric // Required: true Current *MetricValueStatus `json:"current"` // metric identifies the target metric by name and selector // Required: true Metric *MetricIdentifier `json:"metric"` }
ExternalMetricStatus ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.
swagger:model ExternalMetricStatus
func (ExternalMetricStatus) MarshalEasyJSON ¶
func (v ExternalMetricStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ExternalMetricStatus) MarshalJSON ¶
func (v ExternalMetricStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ExternalMetricStatus) UnmarshalEasyJSON ¶
func (v *ExternalMetricStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ExternalMetricStatus) UnmarshalJSON ¶
func (v *ExternalMetricStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HPAScalingPolicy ¶
type HPAScalingPolicy struct { // PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min). // Required: true PeriodSeconds *int32 `json:"periodSeconds"` // Type is used to specify the scaling policy. // Required: true Type *string `json:"type"` // Value contains the amount of change which is permitted by the policy. It must be greater than zero // Required: true Value *int32 `json:"value"` }
HPAScalingPolicy HPAScalingPolicy is a single policy which must hold true for a specified past interval.
swagger:model HPAScalingPolicy
func (HPAScalingPolicy) MarshalEasyJSON ¶
func (v HPAScalingPolicy) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HPAScalingPolicy) MarshalJSON ¶
func (v HPAScalingPolicy) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HPAScalingPolicy) UnmarshalEasyJSON ¶
func (v *HPAScalingPolicy) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HPAScalingPolicy) UnmarshalJSON ¶
func (v *HPAScalingPolicy) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HPAScalingRules ¶
type HPAScalingRules struct { // policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid Policies []*HPAScalingPolicy `json:"policies,omitempty"` // selectPolicy is used to specify which policy should be used. If not set, the default value Max is used. SelectPolicy string `json:"selectPolicy,omitempty"` // StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long). StabilizationWindowSeconds int32 `json:"stabilizationWindowSeconds,omitempty"` }
HPAScalingRules HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.
swagger:model HPAScalingRules
func (HPAScalingRules) MarshalEasyJSON ¶
func (v HPAScalingRules) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HPAScalingRules) MarshalJSON ¶
func (v HPAScalingRules) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HPAScalingRules) UnmarshalEasyJSON ¶
func (v *HPAScalingRules) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HPAScalingRules) UnmarshalJSON ¶
func (v *HPAScalingRules) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HorizontalPodAutoscaler ¶
type HorizontalPodAutoscaler struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"` // spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Spec *HorizontalPodAutoscalerSpec `json:"spec,omitempty"` // status is the current information about the autoscaler. Status *HorizontalPodAutoscalerStatus `json:"status,omitempty"` }
HorizontalPodAutoscaler HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.
swagger:model HorizontalPodAutoscaler
func (*HorizontalPodAutoscaler) GroupVersionKind ¶
func (v *HorizontalPodAutoscaler) GroupVersionKind() schema.GroupVersionKind
func (HorizontalPodAutoscaler) MarshalEasyJSON ¶
func (v HorizontalPodAutoscaler) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HorizontalPodAutoscaler) MarshalJSON ¶
func (v HorizontalPodAutoscaler) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HorizontalPodAutoscaler) UnmarshalEasyJSON ¶
func (v *HorizontalPodAutoscaler) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HorizontalPodAutoscaler) UnmarshalJSON ¶
func (v *HorizontalPodAutoscaler) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HorizontalPodAutoscalerBehavior ¶
type HorizontalPodAutoscalerBehavior struct { // scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used). ScaleDown *HPAScalingRules `json:"scaleDown,omitempty"` // scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of: // * increase no more than 4 pods per 60 seconds // * double the number of pods per 60 seconds // No stabilization is used. ScaleUp *HPAScalingRules `json:"scaleUp,omitempty"` }
HorizontalPodAutoscalerBehavior HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).
swagger:model HorizontalPodAutoscalerBehavior
func (HorizontalPodAutoscalerBehavior) MarshalEasyJSON ¶
func (v HorizontalPodAutoscalerBehavior) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HorizontalPodAutoscalerBehavior) MarshalJSON ¶
func (v HorizontalPodAutoscalerBehavior) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HorizontalPodAutoscalerBehavior) UnmarshalEasyJSON ¶
func (v *HorizontalPodAutoscalerBehavior) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HorizontalPodAutoscalerBehavior) UnmarshalJSON ¶
func (v *HorizontalPodAutoscalerBehavior) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HorizontalPodAutoscalerCondition ¶
type HorizontalPodAutoscalerCondition struct { // lastTransitionTime is the last time the condition transitioned from one status to another LastTransitionTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastTransitionTime,omitempty"` // message is a human-readable explanation containing details about the transition Message string `json:"message,omitempty"` // reason is the reason for the condition's last transition. Reason string `json:"reason,omitempty"` // status is the status of the condition (True, False, Unknown) // Required: true Status *string `json:"status"` // type describes the current condition // Required: true Type *string `json:"type"` }
HorizontalPodAutoscalerCondition HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.
swagger:model HorizontalPodAutoscalerCondition
func (HorizontalPodAutoscalerCondition) MarshalEasyJSON ¶
func (v HorizontalPodAutoscalerCondition) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HorizontalPodAutoscalerCondition) MarshalJSON ¶
func (v HorizontalPodAutoscalerCondition) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HorizontalPodAutoscalerCondition) UnmarshalEasyJSON ¶
func (v *HorizontalPodAutoscalerCondition) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HorizontalPodAutoscalerCondition) UnmarshalJSON ¶
func (v *HorizontalPodAutoscalerCondition) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HorizontalPodAutoscalerList ¶
type HorizontalPodAutoscalerList struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // items is the list of horizontal pod autoscaler objects. // Required: true Items []*HorizontalPodAutoscaler `json:"items"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // metadata is the standard list metadata. Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"` }
HorizontalPodAutoscalerList HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
swagger:model HorizontalPodAutoscalerList
func (*HorizontalPodAutoscalerList) GroupVersionKind ¶
func (v *HorizontalPodAutoscalerList) GroupVersionKind() schema.GroupVersionKind
func (HorizontalPodAutoscalerList) MarshalEasyJSON ¶
func (v HorizontalPodAutoscalerList) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HorizontalPodAutoscalerList) MarshalJSON ¶
func (v HorizontalPodAutoscalerList) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HorizontalPodAutoscalerList) UnmarshalEasyJSON ¶
func (v *HorizontalPodAutoscalerList) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HorizontalPodAutoscalerList) UnmarshalJSON ¶
func (v *HorizontalPodAutoscalerList) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HorizontalPodAutoscalerSpec ¶
type HorizontalPodAutoscalerSpec struct { // behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used. Behavior *HorizontalPodAutoscalerBehavior `json:"behavior,omitempty"` // maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas. // Required: true MaxReplicas *int32 `json:"maxReplicas"` // metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization. Metrics []*MetricSpec `json:"metrics,omitempty"` // minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available. MinReplicas int32 `json:"minReplicas,omitempty"` // scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count. // Required: true ScaleTargetRef *CrossVersionObjectReference `json:"scaleTargetRef"` }
HorizontalPodAutoscalerSpec HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.
swagger:model HorizontalPodAutoscalerSpec
func (HorizontalPodAutoscalerSpec) MarshalEasyJSON ¶
func (v HorizontalPodAutoscalerSpec) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HorizontalPodAutoscalerSpec) MarshalJSON ¶
func (v HorizontalPodAutoscalerSpec) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HorizontalPodAutoscalerSpec) UnmarshalEasyJSON ¶
func (v *HorizontalPodAutoscalerSpec) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HorizontalPodAutoscalerSpec) UnmarshalJSON ¶
func (v *HorizontalPodAutoscalerSpec) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HorizontalPodAutoscalerStatus ¶
type HorizontalPodAutoscalerStatus struct { // conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met. Conditions []*HorizontalPodAutoscalerCondition `json:"conditions,omitempty"` // currentMetrics is the last read state of the metrics used by this autoscaler. CurrentMetrics []*MetricStatus `json:"currentMetrics,omitempty"` // currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler. CurrentReplicas int32 `json:"currentReplicas,omitempty"` // desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler. // Required: true DesiredReplicas *int32 `json:"desiredReplicas"` // lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed. LastScaleTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastScaleTime,omitempty"` // observedGeneration is the most recent generation observed by this autoscaler. ObservedGeneration int64 `json:"observedGeneration,omitempty"` }
HorizontalPodAutoscalerStatus HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.
swagger:model HorizontalPodAutoscalerStatus
func (HorizontalPodAutoscalerStatus) MarshalEasyJSON ¶
func (v HorizontalPodAutoscalerStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HorizontalPodAutoscalerStatus) MarshalJSON ¶
func (v HorizontalPodAutoscalerStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HorizontalPodAutoscalerStatus) UnmarshalEasyJSON ¶
func (v *HorizontalPodAutoscalerStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HorizontalPodAutoscalerStatus) UnmarshalJSON ¶
func (v *HorizontalPodAutoscalerStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type MetricIdentifier ¶
type MetricIdentifier struct { // name is the name of the given metric // Required: true Name *string `json:"name"` // selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics. Selector *apimachinery_pkg_apis_meta_v1.LabelSelector `json:"selector,omitempty"` }
MetricIdentifier MetricIdentifier defines the name and optionally selector for a metric
swagger:model MetricIdentifier
func (MetricIdentifier) MarshalEasyJSON ¶
func (v MetricIdentifier) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (MetricIdentifier) MarshalJSON ¶
func (v MetricIdentifier) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*MetricIdentifier) UnmarshalEasyJSON ¶
func (v *MetricIdentifier) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*MetricIdentifier) UnmarshalJSON ¶
func (v *MetricIdentifier) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type MetricSpec ¶
type MetricSpec struct { // containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag. ContainerResource *ContainerResourceMetricSource `json:"containerResource,omitempty"` // external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). External *ExternalMetricSource `json:"external,omitempty"` // object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object). Object *ObjectMetricSource `json:"object,omitempty"` // pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. Pods *PodsMetricSource `json:"pods,omitempty"` // resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Resource *ResourceMetricSource `json:"resource,omitempty"` // type is the type of metric source. It should be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled // Required: true Type *string `json:"type"` }
MetricSpec MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).
swagger:model MetricSpec
func (MetricSpec) MarshalEasyJSON ¶
func (v MetricSpec) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (MetricSpec) MarshalJSON ¶
func (v MetricSpec) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*MetricSpec) UnmarshalEasyJSON ¶
func (v *MetricSpec) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*MetricSpec) UnmarshalJSON ¶
func (v *MetricSpec) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type MetricStatus ¶
type MetricStatus struct { // container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. ContainerResource *ContainerResourceMetricStatus `json:"containerResource,omitempty"` // external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). External *ExternalMetricStatus `json:"external,omitempty"` // object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object). Object *ObjectMetricStatus `json:"object,omitempty"` // pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. Pods *PodsMetricStatus `json:"pods,omitempty"` // resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Resource *ResourceMetricStatus `json:"resource,omitempty"` // type is the type of metric source. It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled // Required: true Type *string `json:"type"` }
MetricStatus MetricStatus describes the last-read state of a single metric.
swagger:model MetricStatus
func (MetricStatus) MarshalEasyJSON ¶
func (v MetricStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (MetricStatus) MarshalJSON ¶
func (v MetricStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*MetricStatus) UnmarshalEasyJSON ¶
func (v *MetricStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*MetricStatus) UnmarshalJSON ¶
func (v *MetricStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type MetricTarget ¶
type MetricTarget struct { // averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type AverageUtilization int32 `json:"averageUtilization,omitempty"` // averageValue is the target value of the average of the metric across all relevant pods (as a quantity) AverageValue *apimachinery_pkg_api_resource.Quantity `json:"averageValue,omitempty"` // type represents whether the metric type is Utilization, Value, or AverageValue // Required: true Type *string `json:"type"` // value is the target value of the metric (as a quantity). Value *apimachinery_pkg_api_resource.Quantity `json:"value,omitempty"` }
MetricTarget MetricTarget defines the target value, average value, or average utilization of a specific metric
swagger:model MetricTarget
func (MetricTarget) MarshalEasyJSON ¶
func (v MetricTarget) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (MetricTarget) MarshalJSON ¶
func (v MetricTarget) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*MetricTarget) UnmarshalEasyJSON ¶
func (v *MetricTarget) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*MetricTarget) UnmarshalJSON ¶
func (v *MetricTarget) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type MetricValueStatus ¶
type MetricValueStatus struct { // currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. AverageUtilization int32 `json:"averageUtilization,omitempty"` // averageValue is the current value of the average of the metric across all relevant pods (as a quantity) AverageValue *apimachinery_pkg_api_resource.Quantity `json:"averageValue,omitempty"` // value is the current value of the metric (as a quantity). Value *apimachinery_pkg_api_resource.Quantity `json:"value,omitempty"` }
MetricValueStatus MetricValueStatus holds the current value for a metric
swagger:model MetricValueStatus
func (MetricValueStatus) MarshalEasyJSON ¶
func (v MetricValueStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (MetricValueStatus) MarshalJSON ¶
func (v MetricValueStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*MetricValueStatus) UnmarshalEasyJSON ¶
func (v *MetricValueStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*MetricValueStatus) UnmarshalJSON ¶
func (v *MetricValueStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ObjectMetricSource ¶
type ObjectMetricSource struct { // describedObject specifies the descriptions of a object,such as kind,name apiVersion // Required: true DescribedObject *CrossVersionObjectReference `json:"describedObject"` // metric identifies the target metric by name and selector // Required: true Metric *MetricIdentifier `json:"metric"` // target specifies the target value for the given metric // Required: true Target *MetricTarget `json:"target"` }
ObjectMetricSource ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
swagger:model ObjectMetricSource
func (ObjectMetricSource) MarshalEasyJSON ¶
func (v ObjectMetricSource) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ObjectMetricSource) MarshalJSON ¶
func (v ObjectMetricSource) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ObjectMetricSource) UnmarshalEasyJSON ¶
func (v *ObjectMetricSource) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ObjectMetricSource) UnmarshalJSON ¶
func (v *ObjectMetricSource) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ObjectMetricStatus ¶
type ObjectMetricStatus struct { // current contains the current value for the given metric // Required: true Current *MetricValueStatus `json:"current"` // DescribedObject specifies the descriptions of a object,such as kind,name apiVersion // Required: true DescribedObject *CrossVersionObjectReference `json:"describedObject"` // metric identifies the target metric by name and selector // Required: true Metric *MetricIdentifier `json:"metric"` }
ObjectMetricStatus ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
swagger:model ObjectMetricStatus
func (ObjectMetricStatus) MarshalEasyJSON ¶
func (v ObjectMetricStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ObjectMetricStatus) MarshalJSON ¶
func (v ObjectMetricStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ObjectMetricStatus) UnmarshalEasyJSON ¶
func (v *ObjectMetricStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ObjectMetricStatus) UnmarshalJSON ¶
func (v *ObjectMetricStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type PodsMetricSource ¶
type PodsMetricSource struct { // metric identifies the target metric by name and selector // Required: true Metric *MetricIdentifier `json:"metric"` // target specifies the target value for the given metric // Required: true Target *MetricTarget `json:"target"` }
PodsMetricSource PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
swagger:model PodsMetricSource
func (PodsMetricSource) MarshalEasyJSON ¶
func (v PodsMetricSource) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (PodsMetricSource) MarshalJSON ¶
func (v PodsMetricSource) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*PodsMetricSource) UnmarshalEasyJSON ¶
func (v *PodsMetricSource) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*PodsMetricSource) UnmarshalJSON ¶
func (v *PodsMetricSource) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type PodsMetricStatus ¶
type PodsMetricStatus struct { // current contains the current value for the given metric // Required: true Current *MetricValueStatus `json:"current"` // metric identifies the target metric by name and selector // Required: true Metric *MetricIdentifier `json:"metric"` }
PodsMetricStatus PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).
swagger:model PodsMetricStatus
func (PodsMetricStatus) MarshalEasyJSON ¶
func (v PodsMetricStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (PodsMetricStatus) MarshalJSON ¶
func (v PodsMetricStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*PodsMetricStatus) UnmarshalEasyJSON ¶
func (v *PodsMetricStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*PodsMetricStatus) UnmarshalJSON ¶
func (v *PodsMetricStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ResourceMetricSource ¶
type ResourceMetricSource struct { // name is the name of the resource in question. // Required: true Name *string `json:"name"` // target specifies the target value for the given metric // Required: true Target *MetricTarget `json:"target"` }
ResourceMetricSource ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.
swagger:model ResourceMetricSource
func (ResourceMetricSource) MarshalEasyJSON ¶
func (v ResourceMetricSource) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ResourceMetricSource) MarshalJSON ¶
func (v ResourceMetricSource) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ResourceMetricSource) UnmarshalEasyJSON ¶
func (v *ResourceMetricSource) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ResourceMetricSource) UnmarshalJSON ¶
func (v *ResourceMetricSource) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ResourceMetricStatus ¶
type ResourceMetricStatus struct { // current contains the current value for the given metric // Required: true Current *MetricValueStatus `json:"current"` // Name is the name of the resource in question. // Required: true Name *string `json:"name"` }
ResourceMetricStatus ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
swagger:model ResourceMetricStatus
func (ResourceMetricStatus) MarshalEasyJSON ¶
func (v ResourceMetricStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ResourceMetricStatus) MarshalJSON ¶
func (v ResourceMetricStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ResourceMetricStatus) UnmarshalEasyJSON ¶
func (v *ResourceMetricStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ResourceMetricStatus) UnmarshalJSON ¶
func (v *ResourceMetricStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
Source Files ¶
- container_resource_metric_source.go
- container_resource_metric_source_easyjson.go
- container_resource_metric_status.go
- container_resource_metric_status_easyjson.go
- cross_version_object_reference.go
- cross_version_object_reference_easyjson.go
- external_metric_source.go
- external_metric_source_easyjson.go
- external_metric_status.go
- external_metric_status_easyjson.go
- group_info.go
- horizontal_pod_autoscaler.go
- horizontal_pod_autoscaler_behavior.go
- horizontal_pod_autoscaler_behavior_easyjson.go
- horizontal_pod_autoscaler_condition.go
- horizontal_pod_autoscaler_condition_easyjson.go
- horizontal_pod_autoscaler_easyjson.go
- horizontal_pod_autoscaler_gvk.go
- horizontal_pod_autoscaler_list.go
- horizontal_pod_autoscaler_list_easyjson.go
- horizontal_pod_autoscaler_list_gvk.go
- horizontal_pod_autoscaler_spec.go
- horizontal_pod_autoscaler_spec_easyjson.go
- horizontal_pod_autoscaler_status.go
- horizontal_pod_autoscaler_status_easyjson.go
- hpa_scaling_policy.go
- hpa_scaling_policy_easyjson.go
- hpa_scaling_rules.go
- hpa_scaling_rules_easyjson.go
- metric_identifier.go
- metric_identifier_easyjson.go
- metric_spec.go
- metric_spec_easyjson.go
- metric_status.go
- metric_status_easyjson.go
- metric_target.go
- metric_target_easyjson.go
- metric_value_status.go
- metric_value_status_easyjson.go
- object_metric_source.go
- object_metric_source_easyjson.go
- object_metric_status.go
- object_metric_status_easyjson.go
- pods_metric_source.go
- pods_metric_source_easyjson.go
- pods_metric_status.go
- pods_metric_status_easyjson.go
- resource_metric_source.go
- resource_metric_source_easyjson.go
- resource_metric_status.go
- resource_metric_status_easyjson.go