Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var Codec = runtime.CodecFor(api.Scheme, "v1")
Functions ¶
This section is empty.
Types ¶
type HorizontalPodAutoscaler ¶
type HorizontalPodAutoscaler struct { v1.TypeMeta `json:",inline"` v1.ObjectMeta `json:"metadata,omitempty"` // Spec defines the behaviour of autoscaler. Spec HorizontalPodAutoscalerSpec `` /* 166-byte string literal not displayed */ }
HorizontalPodAutoscaler represents the configuration of a horizontal pod autoscaler.
func (*HorizontalPodAutoscaler) IsAnAPIObject ¶
func (*HorizontalPodAutoscaler) IsAnAPIObject()
type HorizontalPodAutoscalerList ¶
type HorizontalPodAutoscalerList struct { v1.TypeMeta `json:",inline"` v1.ListMeta `json:"metadata,omitempty"` Items []HorizontalPodAutoscaler `json:"items" description:"list of horizontal pod autoscalers"` }
HorizontalPodAutoscaler is a collection of pod autoscalers.
func (*HorizontalPodAutoscalerList) IsAnAPIObject ¶
func (*HorizontalPodAutoscalerList) IsAnAPIObject()
type HorizontalPodAutoscalerSpec ¶
type HorizontalPodAutoscalerSpec struct { // ScaleRef is a reference to Scale subresource. HorizontalPodAutoscaler will learn the current resource consumption from its status, // and will set the desired number of pods by modyfying its spec. ScaleRef *SubresourceReference `` /* 147-byte string literal not displayed */ // MinCount is the lower limit for the number of pods that can be set by the autoscaler. MinCount int `json:"minCount" description:"lower limit for the number of pods"` // MaxCount is the upper limit for the number of pods that can be set by the autoscaler. It cannot be smaller than MinCount. MaxCount int `json:"maxCount" description:"upper limit for the number of pods"` // Target is the target average consumption of the given resource that the autoscaler will try to maintain by adjusting the desired number of pods. // Currently two types of resources are supported: "cpu" and "memory". Target TargetConsumption `` /* 147-byte string literal not displayed */ }
HorizontalPodAutoscalerSpec is the specification of a horizontal pod autoscaler.
type ReplicationControllerDummy ¶
Dummy definition
func (*ReplicationControllerDummy) IsAnAPIObject ¶
func (*ReplicationControllerDummy) IsAnAPIObject()
type Scale ¶
type Scale struct { v1.TypeMeta `json:",inline"` v1.ObjectMeta `` /* 136-byte string literal not displayed */ // Spec defines the behavior of the scale. Spec ScaleSpec `` /* 161-byte string literal not displayed */ // Status represents the current status of the scale. Status ScaleStatus `` /* 193-byte string literal not displayed */ }
Scale subresource, applicable to ReplicationControllers and (in future) Deployment.
func (*Scale) IsAnAPIObject ¶
func (*Scale) IsAnAPIObject()
type ScaleSpec ¶
type ScaleSpec struct { // Replicas is the number of desired replicas. Replicas int `` /* 174-byte string literal not displayed */ }
ScaleSpec describes the attributes a Scale subresource
type ScaleStatus ¶
type ScaleStatus struct { // Replicas is the number of actual replicas. Replicas int `` /* 178-byte string literal not displayed */ // Selector is a label query over pods that should match the replicas count. Selector map[string]string `` /* 255-byte string literal not displayed */ }
ScaleStatus represents the current status of a Scale subresource.
type SubresourceReference ¶
type SubresourceReference struct { Kind string `` /* 131-byte string literal not displayed */ Namespace string `` /* 129-byte string literal not displayed */ Name string `` /* 126-byte string literal not displayed */ APIVersion string `json:"apiVersion,omitempty" description:"API version of the referent"` Subresource string `json:"subresource,omitempty" decription:"subresource name of the referent"` }
SubresourceReference contains enough information to let you inspect or modify the referred subresource.
type TargetConsumption ¶
type TargetConsumption struct { Resource v1.ResourceName `json:"resource,omitempty"` Quantity resource.Quantity `json:"quantity,omitempty"` }
TargetConsumption is an object for specifying target average resource consumption of a particular resource.