v1

package
v1.2.0 Latest Latest
Warning

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

Go to latest
Published: Jul 26, 2018 License: Apache-2.0 Imports: 11 Imported by: 6

Documentation

Overview

Package v1 is a generated protocol buffer package.

It is generated from these files:

k8s.io/api/autoscaling/v1/generated.proto

It has these top-level messages:

CrossVersionObjectReference
ExternalMetricSource
ExternalMetricStatus
HorizontalPodAutoscaler
HorizontalPodAutoscalerCondition
HorizontalPodAutoscalerList
HorizontalPodAutoscalerSpec
HorizontalPodAutoscalerStatus
MetricSpec
MetricStatus
ObjectMetricSource
ObjectMetricStatus
PodsMetricSource
PodsMetricStatus
ResourceMetricSource
ResourceMetricStatus
Scale
ScaleSpec
ScaleStatus

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated   = fmt.Errorf("proto: integer overflow")
)

Functions

This section is empty.

Types

type CrossVersionObjectReference

type CrossVersionObjectReference struct {
	// Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
	Kind *string `protobuf:"bytes,1,opt,name=kind" json:"kind,omitempty"`
	// Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name *string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
	// API version of the referent
	// +optional
	ApiVersion       *string `protobuf:"bytes,3,opt,name=apiVersion" json:"apiVersion,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

CrossVersionObjectReference contains enough information to let you identify the referred resource.

func (*CrossVersionObjectReference) Descriptor

func (*CrossVersionObjectReference) Descriptor() ([]byte, []int)

func (*CrossVersionObjectReference) GetApiVersion

func (m *CrossVersionObjectReference) GetApiVersion() string

func (*CrossVersionObjectReference) GetKind

func (m *CrossVersionObjectReference) GetKind() string

func (*CrossVersionObjectReference) GetName

func (m *CrossVersionObjectReference) GetName() string

func (*CrossVersionObjectReference) Marshal

func (m *CrossVersionObjectReference) Marshal() (dAtA []byte, err error)

func (*CrossVersionObjectReference) MarshalTo

func (m *CrossVersionObjectReference) MarshalTo(dAtA []byte) (int, error)

func (*CrossVersionObjectReference) ProtoMessage

func (*CrossVersionObjectReference) ProtoMessage()

func (*CrossVersionObjectReference) Reset

func (m *CrossVersionObjectReference) Reset()

func (*CrossVersionObjectReference) Size

func (m *CrossVersionObjectReference) Size() (n int)

func (*CrossVersionObjectReference) String

func (m *CrossVersionObjectReference) String() string

func (*CrossVersionObjectReference) Unmarshal

func (m *CrossVersionObjectReference) Unmarshal(dAtA []byte) error

type ExternalMetricSource added in v1.1.0

type ExternalMetricSource struct {
	// metricName is the name of the metric in question.
	MetricName *string `protobuf:"bytes,1,opt,name=metricName" json:"metricName,omitempty"`
	// metricSelector is used to identify a specific time series
	// within a given metric.
	// +optional
	MetricSelector *k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector `protobuf:"bytes,2,opt,name=metricSelector" json:"metricSelector,omitempty"`
	// targetValue is the target value of the metric (as a quantity).
	// Mutually exclusive with TargetAverageValue.
	// +optional
	TargetValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=targetValue" json:"targetValue,omitempty"`
	// targetAverageValue is the target per-pod value of global metric (as a quantity).
	// Mutually exclusive with TargetValue.
	// +optional
	TargetAverageValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,4,opt,name=targetAverageValue" json:"targetAverageValue,omitempty"`
	XXX_unrecognized   []byte                                         `json:"-"`
}

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).

func (*ExternalMetricSource) Descriptor added in v1.1.0

func (*ExternalMetricSource) Descriptor() ([]byte, []int)

func (*ExternalMetricSource) GetMetricName added in v1.1.0

func (m *ExternalMetricSource) GetMetricName() string

func (*ExternalMetricSource) GetMetricSelector added in v1.1.0

func (*ExternalMetricSource) GetTargetAverageValue added in v1.1.0

func (*ExternalMetricSource) GetTargetValue added in v1.1.0

func (*ExternalMetricSource) Marshal added in v1.1.0

func (m *ExternalMetricSource) Marshal() (dAtA []byte, err error)

func (*ExternalMetricSource) MarshalTo added in v1.1.0

func (m *ExternalMetricSource) MarshalTo(dAtA []byte) (int, error)

func (*ExternalMetricSource) ProtoMessage added in v1.1.0

func (*ExternalMetricSource) ProtoMessage()

func (*ExternalMetricSource) Reset added in v1.1.0

func (m *ExternalMetricSource) Reset()

func (*ExternalMetricSource) Size added in v1.1.0

func (m *ExternalMetricSource) Size() (n int)

func (*ExternalMetricSource) String added in v1.1.0

func (m *ExternalMetricSource) String() string

func (*ExternalMetricSource) Unmarshal added in v1.1.0

func (m *ExternalMetricSource) Unmarshal(dAtA []byte) error

type ExternalMetricStatus added in v1.1.0

type ExternalMetricStatus struct {
	// metricName is the name of a metric used for autoscaling in
	// metric system.
	MetricName *string `protobuf:"bytes,1,opt,name=metricName" json:"metricName,omitempty"`
	// metricSelector is used to identify a specific time series
	// within a given metric.
	// +optional
	MetricSelector *k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector `protobuf:"bytes,2,opt,name=metricSelector" json:"metricSelector,omitempty"`
	// currentValue is the current value of the metric (as a quantity)
	CurrentValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=currentValue" json:"currentValue,omitempty"`
	// currentAverageValue is the current value of metric averaged over autoscaled pods.
	// +optional
	CurrentAverageValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,4,opt,name=currentAverageValue" json:"currentAverageValue,omitempty"`
	XXX_unrecognized    []byte                                         `json:"-"`
}

ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

func (*ExternalMetricStatus) Descriptor added in v1.1.0

func (*ExternalMetricStatus) Descriptor() ([]byte, []int)

func (*ExternalMetricStatus) GetCurrentAverageValue added in v1.1.0

func (*ExternalMetricStatus) GetCurrentValue added in v1.1.0

func (*ExternalMetricStatus) GetMetricName added in v1.1.0

func (m *ExternalMetricStatus) GetMetricName() string

func (*ExternalMetricStatus) GetMetricSelector added in v1.1.0

func (*ExternalMetricStatus) Marshal added in v1.1.0

func (m *ExternalMetricStatus) Marshal() (dAtA []byte, err error)

func (*ExternalMetricStatus) MarshalTo added in v1.1.0

func (m *ExternalMetricStatus) MarshalTo(dAtA []byte) (int, error)

func (*ExternalMetricStatus) ProtoMessage added in v1.1.0

func (*ExternalMetricStatus) ProtoMessage()

func (*ExternalMetricStatus) Reset added in v1.1.0

func (m *ExternalMetricStatus) Reset()

func (*ExternalMetricStatus) Size added in v1.1.0

func (m *ExternalMetricStatus) Size() (n int)

func (*ExternalMetricStatus) String added in v1.1.0

func (m *ExternalMetricStatus) String() string

func (*ExternalMetricStatus) Unmarshal added in v1.1.0

func (m *ExternalMetricStatus) Unmarshal(dAtA []byte) error

type HorizontalPodAutoscaler

type HorizontalPodAutoscaler struct {
	// Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
	// +optional
	Spec *HorizontalPodAutoscalerSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// current information about the autoscaler.
	// +optional
	Status           *HorizontalPodAutoscalerStatus `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte                         `json:"-"`
}

configuration of a horizontal pod autoscaler.

func (*HorizontalPodAutoscaler) Descriptor

func (*HorizontalPodAutoscaler) Descriptor() ([]byte, []int)

func (*HorizontalPodAutoscaler) GetMetadata

func (*HorizontalPodAutoscaler) GetSpec

func (*HorizontalPodAutoscaler) GetStatus

func (*HorizontalPodAutoscaler) Marshal

func (m *HorizontalPodAutoscaler) Marshal() (dAtA []byte, err error)

func (*HorizontalPodAutoscaler) MarshalTo

func (m *HorizontalPodAutoscaler) MarshalTo(dAtA []byte) (int, error)

func (*HorizontalPodAutoscaler) ProtoMessage

func (*HorizontalPodAutoscaler) ProtoMessage()

func (*HorizontalPodAutoscaler) Reset

func (m *HorizontalPodAutoscaler) Reset()

func (*HorizontalPodAutoscaler) Size

func (m *HorizontalPodAutoscaler) Size() (n int)

func (*HorizontalPodAutoscaler) String

func (m *HorizontalPodAutoscaler) String() string

func (*HorizontalPodAutoscaler) Unmarshal

func (m *HorizontalPodAutoscaler) Unmarshal(dAtA []byte) error

type HorizontalPodAutoscalerCondition added in v1.0.0

type HorizontalPodAutoscalerCondition struct {
	// type describes the current condition
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// status is the status of the condition (True, False, Unknown)
	Status *string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
	// lastTransitionTime is the last time the condition transitioned from
	// one status to another
	// +optional
	LastTransitionTime *k8s_io_apimachinery_pkg_apis_meta_v1.Time `protobuf:"bytes,3,opt,name=lastTransitionTime" json:"lastTransitionTime,omitempty"`
	// reason is the reason for the condition's last transition.
	// +optional
	Reason *string `protobuf:"bytes,4,opt,name=reason" json:"reason,omitempty"`
	// message is a human-readable explanation containing details about
	// the transition
	// +optional
	Message          *string `protobuf:"bytes,5,opt,name=message" json:"message,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

func (*HorizontalPodAutoscalerCondition) Descriptor added in v1.0.0

func (*HorizontalPodAutoscalerCondition) Descriptor() ([]byte, []int)

func (*HorizontalPodAutoscalerCondition) GetLastTransitionTime added in v1.0.0

func (*HorizontalPodAutoscalerCondition) GetMessage added in v1.0.0

func (m *HorizontalPodAutoscalerCondition) GetMessage() string

func (*HorizontalPodAutoscalerCondition) GetReason added in v1.0.0

func (*HorizontalPodAutoscalerCondition) GetStatus added in v1.0.0

func (*HorizontalPodAutoscalerCondition) GetType added in v1.0.0

func (*HorizontalPodAutoscalerCondition) Marshal added in v1.0.0

func (m *HorizontalPodAutoscalerCondition) Marshal() (dAtA []byte, err error)

func (*HorizontalPodAutoscalerCondition) MarshalTo added in v1.0.0

func (m *HorizontalPodAutoscalerCondition) MarshalTo(dAtA []byte) (int, error)

func (*HorizontalPodAutoscalerCondition) ProtoMessage added in v1.0.0

func (*HorizontalPodAutoscalerCondition) ProtoMessage()

func (*HorizontalPodAutoscalerCondition) Reset added in v1.0.0

func (*HorizontalPodAutoscalerCondition) Size added in v1.0.0

func (m *HorizontalPodAutoscalerCondition) Size() (n int)

func (*HorizontalPodAutoscalerCondition) String added in v1.0.0

func (*HorizontalPodAutoscalerCondition) Unmarshal added in v1.0.0

func (m *HorizontalPodAutoscalerCondition) Unmarshal(dAtA []byte) error

type HorizontalPodAutoscalerList

type HorizontalPodAutoscalerList struct {
	// Standard list metadata.
	// +optional
	Metadata *k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// list of horizontal pod autoscaler objects.
	Items            []*HorizontalPodAutoscaler `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte                     `json:"-"`
}

list of horizontal pod autoscaler objects.

func (*HorizontalPodAutoscalerList) Descriptor

func (*HorizontalPodAutoscalerList) Descriptor() ([]byte, []int)

func (*HorizontalPodAutoscalerList) GetItems

func (*HorizontalPodAutoscalerList) GetMetadata

func (*HorizontalPodAutoscalerList) Marshal

func (m *HorizontalPodAutoscalerList) Marshal() (dAtA []byte, err error)

func (*HorizontalPodAutoscalerList) MarshalTo

func (m *HorizontalPodAutoscalerList) MarshalTo(dAtA []byte) (int, error)

func (*HorizontalPodAutoscalerList) ProtoMessage

func (*HorizontalPodAutoscalerList) ProtoMessage()

func (*HorizontalPodAutoscalerList) Reset

func (m *HorizontalPodAutoscalerList) Reset()

func (*HorizontalPodAutoscalerList) Size

func (m *HorizontalPodAutoscalerList) Size() (n int)

func (*HorizontalPodAutoscalerList) String

func (m *HorizontalPodAutoscalerList) String() string

func (*HorizontalPodAutoscalerList) Unmarshal

func (m *HorizontalPodAutoscalerList) Unmarshal(dAtA []byte) error

type HorizontalPodAutoscalerSpec

type HorizontalPodAutoscalerSpec struct {
	// reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption
	// and will set the desired number of pods by using its Scale subresource.
	ScaleTargetRef *CrossVersionObjectReference `protobuf:"bytes,1,opt,name=scaleTargetRef" json:"scaleTargetRef,omitempty"`
	// lower limit for the number of pods that can be set by the autoscaler, default 1.
	// +optional
	MinReplicas *int32 `protobuf:"varint,2,opt,name=minReplicas" json:"minReplicas,omitempty"`
	// upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.
	MaxReplicas *int32 `protobuf:"varint,3,opt,name=maxReplicas" json:"maxReplicas,omitempty"`
	// target average CPU utilization (represented as a percentage of requested CPU) over all the pods;
	// if not specified the default autoscaling policy will be used.
	// +optional
	TargetCPUUtilizationPercentage *int32 `protobuf:"varint,4,opt,name=targetCPUUtilizationPercentage" json:"targetCPUUtilizationPercentage,omitempty"`
	XXX_unrecognized               []byte `json:"-"`
}

specification of a horizontal pod autoscaler.

func (*HorizontalPodAutoscalerSpec) Descriptor

func (*HorizontalPodAutoscalerSpec) Descriptor() ([]byte, []int)

func (*HorizontalPodAutoscalerSpec) GetMaxReplicas

func (m *HorizontalPodAutoscalerSpec) GetMaxReplicas() int32

func (*HorizontalPodAutoscalerSpec) GetMinReplicas

func (m *HorizontalPodAutoscalerSpec) GetMinReplicas() int32

func (*HorizontalPodAutoscalerSpec) GetScaleTargetRef

func (*HorizontalPodAutoscalerSpec) GetTargetCPUUtilizationPercentage

func (m *HorizontalPodAutoscalerSpec) GetTargetCPUUtilizationPercentage() int32

func (*HorizontalPodAutoscalerSpec) Marshal

func (m *HorizontalPodAutoscalerSpec) Marshal() (dAtA []byte, err error)

func (*HorizontalPodAutoscalerSpec) MarshalTo

func (m *HorizontalPodAutoscalerSpec) MarshalTo(dAtA []byte) (int, error)

func (*HorizontalPodAutoscalerSpec) ProtoMessage

func (*HorizontalPodAutoscalerSpec) ProtoMessage()

func (*HorizontalPodAutoscalerSpec) Reset

func (m *HorizontalPodAutoscalerSpec) Reset()

func (*HorizontalPodAutoscalerSpec) Size

func (m *HorizontalPodAutoscalerSpec) Size() (n int)

func (*HorizontalPodAutoscalerSpec) String

func (m *HorizontalPodAutoscalerSpec) String() string

func (*HorizontalPodAutoscalerSpec) Unmarshal

func (m *HorizontalPodAutoscalerSpec) Unmarshal(dAtA []byte) error

type HorizontalPodAutoscalerStatus

type HorizontalPodAutoscalerStatus struct {
	// most recent generation observed by this autoscaler.
	// +optional
	ObservedGeneration *int64 `protobuf:"varint,1,opt,name=observedGeneration" json:"observedGeneration,omitempty"`
	// last time the HorizontalPodAutoscaler scaled the number of pods;
	// used by the autoscaler to control how often the number of pods is changed.
	// +optional
	LastScaleTime *k8s_io_apimachinery_pkg_apis_meta_v1.Time `protobuf:"bytes,2,opt,name=lastScaleTime" json:"lastScaleTime,omitempty"`
	// current number of replicas of pods managed by this autoscaler.
	CurrentReplicas *int32 `protobuf:"varint,3,opt,name=currentReplicas" json:"currentReplicas,omitempty"`
	// desired number of replicas of pods managed by this autoscaler.
	DesiredReplicas *int32 `protobuf:"varint,4,opt,name=desiredReplicas" json:"desiredReplicas,omitempty"`
	// current average CPU utilization over all pods, represented as a percentage of requested CPU,
	// e.g. 70 means that an average pod is using now 70% of its requested CPU.
	// +optional
	CurrentCPUUtilizationPercentage *int32 `protobuf:"varint,5,opt,name=currentCPUUtilizationPercentage" json:"currentCPUUtilizationPercentage,omitempty"`
	XXX_unrecognized                []byte `json:"-"`
}

current status of a horizontal pod autoscaler

func (*HorizontalPodAutoscalerStatus) Descriptor

func (*HorizontalPodAutoscalerStatus) Descriptor() ([]byte, []int)

func (*HorizontalPodAutoscalerStatus) GetCurrentCPUUtilizationPercentage

func (m *HorizontalPodAutoscalerStatus) GetCurrentCPUUtilizationPercentage() int32

func (*HorizontalPodAutoscalerStatus) GetCurrentReplicas

func (m *HorizontalPodAutoscalerStatus) GetCurrentReplicas() int32

func (*HorizontalPodAutoscalerStatus) GetDesiredReplicas

func (m *HorizontalPodAutoscalerStatus) GetDesiredReplicas() int32

func (*HorizontalPodAutoscalerStatus) GetLastScaleTime

func (*HorizontalPodAutoscalerStatus) GetObservedGeneration

func (m *HorizontalPodAutoscalerStatus) GetObservedGeneration() int64

func (*HorizontalPodAutoscalerStatus) Marshal

func (m *HorizontalPodAutoscalerStatus) Marshal() (dAtA []byte, err error)

func (*HorizontalPodAutoscalerStatus) MarshalTo

func (m *HorizontalPodAutoscalerStatus) MarshalTo(dAtA []byte) (int, error)

func (*HorizontalPodAutoscalerStatus) ProtoMessage

func (*HorizontalPodAutoscalerStatus) ProtoMessage()

func (*HorizontalPodAutoscalerStatus) Reset

func (m *HorizontalPodAutoscalerStatus) Reset()

func (*HorizontalPodAutoscalerStatus) Size

func (m *HorizontalPodAutoscalerStatus) Size() (n int)

func (*HorizontalPodAutoscalerStatus) String

func (*HorizontalPodAutoscalerStatus) Unmarshal

func (m *HorizontalPodAutoscalerStatus) Unmarshal(dAtA []byte) error

type MetricSpec added in v0.3.0

type MetricSpec struct {
	// type is the type of metric source.  It should be one of "Object",
	// "Pods" or "Resource", each mapping to a matching field in the object.
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// object refers to a metric describing a single kubernetes object
	// (for example, hits-per-second on an Ingress object).
	// +optional
	Object *ObjectMetricSource `protobuf:"bytes,2,opt,name=object" 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.
	// +optional
	Pods *PodsMetricSource `protobuf:"bytes,3,opt,name=pods" 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.
	// +optional
	Resource *ResourceMetricSource `protobuf:"bytes,4,opt,name=resource" json:"resource,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).
	// +optional
	External         *ExternalMetricSource `protobuf:"bytes,5,opt,name=external" json:"external,omitempty"`
	XXX_unrecognized []byte                `json:"-"`
}

MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).

func (*MetricSpec) Descriptor added in v0.3.0

func (*MetricSpec) Descriptor() ([]byte, []int)

func (*MetricSpec) GetExternal added in v1.1.0

func (m *MetricSpec) GetExternal() *ExternalMetricSource

func (*MetricSpec) GetObject added in v0.3.0

func (m *MetricSpec) GetObject() *ObjectMetricSource

func (*MetricSpec) GetPods added in v0.3.0

func (m *MetricSpec) GetPods() *PodsMetricSource

func (*MetricSpec) GetResource added in v0.3.0

func (m *MetricSpec) GetResource() *ResourceMetricSource

func (*MetricSpec) GetType added in v0.3.0

func (m *MetricSpec) GetType() string

func (*MetricSpec) Marshal added in v0.3.0

func (m *MetricSpec) Marshal() (dAtA []byte, err error)

func (*MetricSpec) MarshalTo added in v0.3.0

func (m *MetricSpec) MarshalTo(dAtA []byte) (int, error)

func (*MetricSpec) ProtoMessage added in v0.3.0

func (*MetricSpec) ProtoMessage()

func (*MetricSpec) Reset added in v0.3.0

func (m *MetricSpec) Reset()

func (*MetricSpec) Size added in v0.3.0

func (m *MetricSpec) Size() (n int)

func (*MetricSpec) String added in v0.3.0

func (m *MetricSpec) String() string

func (*MetricSpec) Unmarshal added in v0.3.0

func (m *MetricSpec) Unmarshal(dAtA []byte) error

type MetricStatus added in v0.3.0

type MetricStatus struct {
	// type is the type of metric source.  It will be one of "Object",
	// "Pods" or "Resource", each corresponds to a matching field in the object.
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// object refers to a metric describing a single kubernetes object
	// (for example, hits-per-second on an Ingress object).
	// +optional
	Object *ObjectMetricStatus `protobuf:"bytes,2,opt,name=object" 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.
	// +optional
	Pods *PodsMetricStatus `protobuf:"bytes,3,opt,name=pods" 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.
	// +optional
	Resource *ResourceMetricStatus `protobuf:"bytes,4,opt,name=resource" json:"resource,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).
	// +optional
	External         *ExternalMetricStatus `protobuf:"bytes,5,opt,name=external" json:"external,omitempty"`
	XXX_unrecognized []byte                `json:"-"`
}

MetricStatus describes the last-read state of a single metric.

func (*MetricStatus) Descriptor added in v0.3.0

func (*MetricStatus) Descriptor() ([]byte, []int)

func (*MetricStatus) GetExternal added in v1.1.0

func (m *MetricStatus) GetExternal() *ExternalMetricStatus

func (*MetricStatus) GetObject added in v0.3.0

func (m *MetricStatus) GetObject() *ObjectMetricStatus

func (*MetricStatus) GetPods added in v0.3.0

func (m *MetricStatus) GetPods() *PodsMetricStatus

func (*MetricStatus) GetResource added in v0.3.0

func (m *MetricStatus) GetResource() *ResourceMetricStatus

func (*MetricStatus) GetType added in v0.3.0

func (m *MetricStatus) GetType() string

func (*MetricStatus) Marshal added in v0.3.0

func (m *MetricStatus) Marshal() (dAtA []byte, err error)

func (*MetricStatus) MarshalTo added in v0.3.0

func (m *MetricStatus) MarshalTo(dAtA []byte) (int, error)

func (*MetricStatus) ProtoMessage added in v0.3.0

func (*MetricStatus) ProtoMessage()

func (*MetricStatus) Reset added in v0.3.0

func (m *MetricStatus) Reset()

func (*MetricStatus) Size added in v0.3.0

func (m *MetricStatus) Size() (n int)

func (*MetricStatus) String added in v0.3.0

func (m *MetricStatus) String() string

func (*MetricStatus) Unmarshal added in v0.3.0

func (m *MetricStatus) Unmarshal(dAtA []byte) error

type ObjectMetricSource added in v0.3.0

type ObjectMetricSource struct {
	// target is the described Kubernetes object.
	Target *CrossVersionObjectReference `protobuf:"bytes,1,opt,name=target" json:"target,omitempty"`
	// metricName is the name of the metric in question.
	MetricName *string `protobuf:"bytes,2,opt,name=metricName" json:"metricName,omitempty"`
	// targetValue is the target value of the metric (as a quantity).
	TargetValue      *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=targetValue" json:"targetValue,omitempty"`
	XXX_unrecognized []byte                                         `json:"-"`
}

ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

func (*ObjectMetricSource) Descriptor added in v0.3.0

func (*ObjectMetricSource) Descriptor() ([]byte, []int)

func (*ObjectMetricSource) GetMetricName added in v0.3.0

func (m *ObjectMetricSource) GetMetricName() string

func (*ObjectMetricSource) GetTarget added in v0.3.0

func (*ObjectMetricSource) GetTargetValue added in v0.3.0

func (*ObjectMetricSource) Marshal added in v0.3.0

func (m *ObjectMetricSource) Marshal() (dAtA []byte, err error)

func (*ObjectMetricSource) MarshalTo added in v0.3.0

func (m *ObjectMetricSource) MarshalTo(dAtA []byte) (int, error)

func (*ObjectMetricSource) ProtoMessage added in v0.3.0

func (*ObjectMetricSource) ProtoMessage()

func (*ObjectMetricSource) Reset added in v0.3.0

func (m *ObjectMetricSource) Reset()

func (*ObjectMetricSource) Size added in v0.3.0

func (m *ObjectMetricSource) Size() (n int)

func (*ObjectMetricSource) String added in v0.3.0

func (m *ObjectMetricSource) String() string

func (*ObjectMetricSource) Unmarshal added in v0.3.0

func (m *ObjectMetricSource) Unmarshal(dAtA []byte) error

type ObjectMetricStatus added in v0.3.0

type ObjectMetricStatus struct {
	// target is the described Kubernetes object.
	Target *CrossVersionObjectReference `protobuf:"bytes,1,opt,name=target" json:"target,omitempty"`
	// metricName is the name of the metric in question.
	MetricName *string `protobuf:"bytes,2,opt,name=metricName" json:"metricName,omitempty"`
	// currentValue is the current value of the metric (as a quantity).
	CurrentValue     *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=currentValue" json:"currentValue,omitempty"`
	XXX_unrecognized []byte                                         `json:"-"`
}

ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

func (*ObjectMetricStatus) Descriptor added in v0.3.0

func (*ObjectMetricStatus) Descriptor() ([]byte, []int)

func (*ObjectMetricStatus) GetCurrentValue added in v0.3.0

func (*ObjectMetricStatus) GetMetricName added in v0.3.0

func (m *ObjectMetricStatus) GetMetricName() string

func (*ObjectMetricStatus) GetTarget added in v0.3.0

func (*ObjectMetricStatus) Marshal added in v0.3.0

func (m *ObjectMetricStatus) Marshal() (dAtA []byte, err error)

func (*ObjectMetricStatus) MarshalTo added in v0.3.0

func (m *ObjectMetricStatus) MarshalTo(dAtA []byte) (int, error)

func (*ObjectMetricStatus) ProtoMessage added in v0.3.0

func (*ObjectMetricStatus) ProtoMessage()

func (*ObjectMetricStatus) Reset added in v0.3.0

func (m *ObjectMetricStatus) Reset()

func (*ObjectMetricStatus) Size added in v0.3.0

func (m *ObjectMetricStatus) Size() (n int)

func (*ObjectMetricStatus) String added in v0.3.0

func (m *ObjectMetricStatus) String() string

func (*ObjectMetricStatus) Unmarshal added in v0.3.0

func (m *ObjectMetricStatus) Unmarshal(dAtA []byte) error

type PodsMetricSource added in v0.3.0

type PodsMetricSource struct {
	// metricName is the name of the metric in question
	MetricName *string `protobuf:"bytes,1,opt,name=metricName" json:"metricName,omitempty"`
	// targetAverageValue is the target value of the average of the
	// metric across all relevant pods (as a quantity)
	TargetAverageValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,2,opt,name=targetAverageValue" json:"targetAverageValue,omitempty"`
	XXX_unrecognized   []byte                                         `json:"-"`
}

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.

func (*PodsMetricSource) Descriptor added in v0.3.0

func (*PodsMetricSource) Descriptor() ([]byte, []int)

func (*PodsMetricSource) GetMetricName added in v0.3.0

func (m *PodsMetricSource) GetMetricName() string

func (*PodsMetricSource) GetTargetAverageValue added in v0.3.0

func (*PodsMetricSource) Marshal added in v0.3.0

func (m *PodsMetricSource) Marshal() (dAtA []byte, err error)

func (*PodsMetricSource) MarshalTo added in v0.3.0

func (m *PodsMetricSource) MarshalTo(dAtA []byte) (int, error)

func (*PodsMetricSource) ProtoMessage added in v0.3.0

func (*PodsMetricSource) ProtoMessage()

func (*PodsMetricSource) Reset added in v0.3.0

func (m *PodsMetricSource) Reset()

func (*PodsMetricSource) Size added in v0.3.0

func (m *PodsMetricSource) Size() (n int)

func (*PodsMetricSource) String added in v0.3.0

func (m *PodsMetricSource) String() string

func (*PodsMetricSource) Unmarshal added in v0.3.0

func (m *PodsMetricSource) Unmarshal(dAtA []byte) error

type PodsMetricStatus added in v0.3.0

type PodsMetricStatus struct {
	// metricName is the name of the metric in question
	MetricName *string `protobuf:"bytes,1,opt,name=metricName" json:"metricName,omitempty"`
	// currentAverageValue is the current value of the average of the
	// metric across all relevant pods (as a quantity)
	CurrentAverageValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,2,opt,name=currentAverageValue" json:"currentAverageValue,omitempty"`
	XXX_unrecognized    []byte                                         `json:"-"`
}

PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).

func (*PodsMetricStatus) Descriptor added in v0.3.0

func (*PodsMetricStatus) Descriptor() ([]byte, []int)

func (*PodsMetricStatus) GetCurrentAverageValue added in v0.3.0

func (m *PodsMetricStatus) GetCurrentAverageValue() *k8s_io_apimachinery_pkg_api_resource.Quantity

func (*PodsMetricStatus) GetMetricName added in v0.3.0

func (m *PodsMetricStatus) GetMetricName() string

func (*PodsMetricStatus) Marshal added in v0.3.0

func (m *PodsMetricStatus) Marshal() (dAtA []byte, err error)

func (*PodsMetricStatus) MarshalTo added in v0.3.0

func (m *PodsMetricStatus) MarshalTo(dAtA []byte) (int, error)

func (*PodsMetricStatus) ProtoMessage added in v0.3.0

func (*PodsMetricStatus) ProtoMessage()

func (*PodsMetricStatus) Reset added in v0.3.0

func (m *PodsMetricStatus) Reset()

func (*PodsMetricStatus) Size added in v0.3.0

func (m *PodsMetricStatus) Size() (n int)

func (*PodsMetricStatus) String added in v0.3.0

func (m *PodsMetricStatus) String() string

func (*PodsMetricStatus) Unmarshal added in v0.3.0

func (m *PodsMetricStatus) Unmarshal(dAtA []byte) error

type ResourceMetricSource added in v0.3.0

type ResourceMetricSource struct {
	// name is the name of the resource in question.
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// targetAverageUtilization 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.
	// +optional
	TargetAverageUtilization *int32 `protobuf:"varint,2,opt,name=targetAverageUtilization" json:"targetAverageUtilization,omitempty"`
	// targetAverageValue is the target value of the average of the
	// resource metric across all relevant pods, as a raw value (instead of as
	// a percentage of the request), similar to the "pods" metric source type.
	// +optional
	TargetAverageValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=targetAverageValue" json:"targetAverageValue,omitempty"`
	XXX_unrecognized   []byte                                         `json:"-"`
}

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.

func (*ResourceMetricSource) Descriptor added in v0.3.0

func (*ResourceMetricSource) Descriptor() ([]byte, []int)

func (*ResourceMetricSource) GetName added in v0.3.0

func (m *ResourceMetricSource) GetName() string

func (*ResourceMetricSource) GetTargetAverageUtilization added in v0.3.0

func (m *ResourceMetricSource) GetTargetAverageUtilization() int32

func (*ResourceMetricSource) GetTargetAverageValue added in v0.3.0

func (*ResourceMetricSource) Marshal added in v0.3.0

func (m *ResourceMetricSource) Marshal() (dAtA []byte, err error)

func (*ResourceMetricSource) MarshalTo added in v0.3.0

func (m *ResourceMetricSource) MarshalTo(dAtA []byte) (int, error)

func (*ResourceMetricSource) ProtoMessage added in v0.3.0

func (*ResourceMetricSource) ProtoMessage()

func (*ResourceMetricSource) Reset added in v0.3.0

func (m *ResourceMetricSource) Reset()

func (*ResourceMetricSource) Size added in v0.3.0

func (m *ResourceMetricSource) Size() (n int)

func (*ResourceMetricSource) String added in v0.3.0

func (m *ResourceMetricSource) String() string

func (*ResourceMetricSource) Unmarshal added in v0.3.0

func (m *ResourceMetricSource) Unmarshal(dAtA []byte) error

type ResourceMetricStatus added in v0.3.0

type ResourceMetricStatus struct {
	// name is the name of the resource in question.
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// 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.  It will only be
	// present if `targetAverageValue` was set in the corresponding metric
	// specification.
	// +optional
	CurrentAverageUtilization *int32 `protobuf:"varint,2,opt,name=currentAverageUtilization" json:"currentAverageUtilization,omitempty"`
	// currentAverageValue is the current value of the average of the
	// resource metric across all relevant pods, as a raw value (instead of as
	// a percentage of the request), similar to the "pods" metric source type.
	// It will always be set, regardless of the corresponding metric specification.
	CurrentAverageValue *k8s_io_apimachinery_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=currentAverageValue" json:"currentAverageValue,omitempty"`
	XXX_unrecognized    []byte                                         `json:"-"`
}

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.

func (*ResourceMetricStatus) Descriptor added in v0.3.0

func (*ResourceMetricStatus) Descriptor() ([]byte, []int)

func (*ResourceMetricStatus) GetCurrentAverageUtilization added in v0.3.0

func (m *ResourceMetricStatus) GetCurrentAverageUtilization() int32

func (*ResourceMetricStatus) GetCurrentAverageValue added in v0.3.0

func (*ResourceMetricStatus) GetName added in v0.3.0

func (m *ResourceMetricStatus) GetName() string

func (*ResourceMetricStatus) Marshal added in v0.3.0

func (m *ResourceMetricStatus) Marshal() (dAtA []byte, err error)

func (*ResourceMetricStatus) MarshalTo added in v0.3.0

func (m *ResourceMetricStatus) MarshalTo(dAtA []byte) (int, error)

func (*ResourceMetricStatus) ProtoMessage added in v0.3.0

func (*ResourceMetricStatus) ProtoMessage()

func (*ResourceMetricStatus) Reset added in v0.3.0

func (m *ResourceMetricStatus) Reset()

func (*ResourceMetricStatus) Size added in v0.3.0

func (m *ResourceMetricStatus) Size() (n int)

func (*ResourceMetricStatus) String added in v0.3.0

func (m *ResourceMetricStatus) String() string

func (*ResourceMetricStatus) Unmarshal added in v0.3.0

func (m *ResourceMetricStatus) Unmarshal(dAtA []byte) error

type Scale

type Scale struct {
	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
	// +optional
	Metadata *k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
	// +optional
	Spec *ScaleSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
	// +optional
	Status           *ScaleStatus `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte       `json:"-"`
}

Scale represents a scaling request for a resource.

func (*Scale) Descriptor

func (*Scale) Descriptor() ([]byte, []int)

func (*Scale) GetMetadata

func (*Scale) GetSpec

func (m *Scale) GetSpec() *ScaleSpec

func (*Scale) GetStatus

func (m *Scale) GetStatus() *ScaleStatus

func (*Scale) Marshal

func (m *Scale) Marshal() (dAtA []byte, err error)

func (*Scale) MarshalTo

func (m *Scale) MarshalTo(dAtA []byte) (int, error)

func (*Scale) ProtoMessage

func (*Scale) ProtoMessage()

func (*Scale) Reset

func (m *Scale) Reset()

func (*Scale) Size

func (m *Scale) Size() (n int)

func (*Scale) String

func (m *Scale) String() string

func (*Scale) Unmarshal

func (m *Scale) Unmarshal(dAtA []byte) error

type ScaleSpec

type ScaleSpec struct {
	// desired number of instances for the scaled object.
	// +optional
	Replicas         *int32 `protobuf:"varint,1,opt,name=replicas" json:"replicas,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

ScaleSpec describes the attributes of a scale subresource.

func (*ScaleSpec) Descriptor

func (*ScaleSpec) Descriptor() ([]byte, []int)

func (*ScaleSpec) GetReplicas

func (m *ScaleSpec) GetReplicas() int32

func (*ScaleSpec) Marshal

func (m *ScaleSpec) Marshal() (dAtA []byte, err error)

func (*ScaleSpec) MarshalTo

func (m *ScaleSpec) MarshalTo(dAtA []byte) (int, error)

func (*ScaleSpec) ProtoMessage

func (*ScaleSpec) ProtoMessage()

func (*ScaleSpec) Reset

func (m *ScaleSpec) Reset()

func (*ScaleSpec) Size

func (m *ScaleSpec) Size() (n int)

func (*ScaleSpec) String

func (m *ScaleSpec) String() string

func (*ScaleSpec) Unmarshal

func (m *ScaleSpec) Unmarshal(dAtA []byte) error

type ScaleStatus

type ScaleStatus struct {
	// actual number of observed instances of the scaled object.
	Replicas *int32 `protobuf:"varint,1,opt,name=replicas" json:"replicas,omitempty"`
	// label query over pods that should match the replicas count. This is same
	// as the label selector but in the string format to avoid introspection
	// by clients. The string will be in the same format as the query-param syntax.
	// More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors
	// +optional
	Selector         *string `protobuf:"bytes,2,opt,name=selector" json:"selector,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ScaleStatus represents the current status of a scale subresource.

func (*ScaleStatus) Descriptor

func (*ScaleStatus) Descriptor() ([]byte, []int)

func (*ScaleStatus) GetReplicas

func (m *ScaleStatus) GetReplicas() int32

func (*ScaleStatus) GetSelector

func (m *ScaleStatus) GetSelector() string

func (*ScaleStatus) Marshal

func (m *ScaleStatus) Marshal() (dAtA []byte, err error)

func (*ScaleStatus) MarshalTo

func (m *ScaleStatus) MarshalTo(dAtA []byte) (int, error)

func (*ScaleStatus) ProtoMessage

func (*ScaleStatus) ProtoMessage()

func (*ScaleStatus) Reset

func (m *ScaleStatus) Reset()

func (*ScaleStatus) Size

func (m *ScaleStatus) Size() (n int)

func (*ScaleStatus) String

func (m *ScaleStatus) String() string

func (*ScaleStatus) Unmarshal

func (m *ScaleStatus) Unmarshal(dAtA []byte) error

Jump to

Keyboard shortcuts

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