v1alpha1

package
v0.3.14 Latest Latest
Warning

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

Go to latest
Published: May 30, 2019 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package v1alpha1 contains API Schema definitions for the autoscaling v1alpha1 API group +k8s:openapi-gen=true +k8s:deepcopy-gen=package,register +k8s:conversion-gen=github.com/containers-ai/alameda/operator/pkg/apis/autoscaling +k8s:defaulter-gen=TypeMeta +groupName=autoscaling.containers.ai

Package v1alpha1 contains API Schema definitions for the autoscaling v1alpha1 API group +k8s:openapi-gen=true +k8s:deepcopy-gen=package,register +k8s:conversion-gen=github.com/containers-ai/alameda/operator/pkg/apis/autoscaling +k8s:defaulter-gen=TypeMeta +groupName=autoscaling.containers.ai

Index

Constants

View Source
const (
	RecommendationPolicySTABLE  alamedaPolicy = "stable"
	RecommendationPolicyCOMPACT alamedaPolicy = "compact"
)
View Source
const (
	EnableVPA          scalingToolType = "vpa"
	EnableHPA          scalingToolType = "hpa"
	DefaultScalingTool bool            = true
)

Variables

View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion = schema.GroupVersion{Group: "autoscaling.containers.ai", Version: "v1alpha1"}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}

	// AddToScheme is required by pkg/client/...
	AddToScheme = SchemeBuilder.AddToScheme
)
View Source
var (
	AlamedaControllerTypeName = map[AlamedaControllerType]string{
		DeploymentController:       "deployment",
		DeploymentConfigController: "deploymentconfig",
	}
)

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource is required by pkg/client/listers/...

Types

type AlamedaContainer

type AlamedaContainer struct {
	Name      string                      `json:"name" protobuf:"bytes,1,opt,name=name"`
	Resources corev1.ResourceRequirements `json:"resources,omitempty" protobuf:"bytes,2,opt,name=resources"`
}

func (*AlamedaContainer) DeepCopy

func (in *AlamedaContainer) DeepCopy() *AlamedaContainer

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaContainer.

func (*AlamedaContainer) DeepCopyInto

func (in *AlamedaContainer) DeepCopyInto(out *AlamedaContainer)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlamedaController

type AlamedaController struct {
	Deployments       map[NamespacedName]AlamedaResource `json:"deployments" protobuf:"bytes,1,opt,name=deployments"`
	DeploymentConfigs map[NamespacedName]AlamedaResource `json:"deploymentconfigs" protobuf:"bytes,2,opt,name=deployment_configs"`
}

func (*AlamedaController) DeepCopy

func (in *AlamedaController) DeepCopy() *AlamedaController

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaController.

func (*AlamedaController) DeepCopyInto

func (in *AlamedaController) DeepCopyInto(out *AlamedaController)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlamedaControllerType added in v0.3.0

type AlamedaControllerType int
const (
	DeploymentController       AlamedaControllerType = 1
	DeploymentConfigController AlamedaControllerType = 2
)

type AlamedaPod

type AlamedaPod struct {
	Namespace  string             `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
	Name       string             `json:"name" protobuf:"bytes,2,opt,name=name"`
	UID        string             `json:"uid" protobuf:"bytes,3,opt,name=uid"`
	Containers []AlamedaContainer `json:"containers" protobuf:"bytes,4,opt,name=containers"`
}

func (*AlamedaPod) DeepCopy

func (in *AlamedaPod) DeepCopy() *AlamedaPod

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaPod.

func (*AlamedaPod) DeepCopyInto

func (in *AlamedaPod) DeepCopyInto(out *AlamedaPod)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AlamedaPod) GetNamespacedName added in v0.3.0

func (p *AlamedaPod) GetNamespacedName() NamespacedName

type AlamedaRecommendation

type AlamedaRecommendation struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   AlamedaRecommendationSpec   `json:"spec,omitempty"`
	Status AlamedaRecommendationStatus `json:"status,omitempty"`
}

AlamedaRecommendation is the Schema for the alamedarecommendations API +k8s:openapi-gen=true

func (*AlamedaRecommendation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaRecommendation.

func (*AlamedaRecommendation) DeepCopyInto

func (in *AlamedaRecommendation) DeepCopyInto(out *AlamedaRecommendation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AlamedaRecommendation) DeepCopyObject

func (in *AlamedaRecommendation) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AlamedaRecommendation) GetNamespacedName added in v0.3.0

func (ar *AlamedaRecommendation) GetNamespacedName() NamespacedName

type AlamedaRecommendationList

type AlamedaRecommendationList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []AlamedaRecommendation `json:"items"`
}

AlamedaRecommendationList contains a list of AlamedaRecommendation

func (*AlamedaRecommendationList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaRecommendationList.

func (*AlamedaRecommendationList) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AlamedaRecommendationList) DeepCopyObject

func (in *AlamedaRecommendationList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type AlamedaRecommendationSpec

type AlamedaRecommendationSpec struct {
	Containers []AlamedaContainer `json:"containers" protobuf:"bytes,1,opt,name=containers"`
}

AlamedaRecommendationSpec defines the desired state of AlamedaRecommendation

func (*AlamedaRecommendationSpec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaRecommendationSpec.

func (*AlamedaRecommendationSpec) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlamedaRecommendationStatus

type AlamedaRecommendationStatus struct {
}

AlamedaRecommendationStatus defines the observed state of AlamedaRecommendation

func (*AlamedaRecommendationStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaRecommendationStatus.

func (*AlamedaRecommendationStatus) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlamedaResource added in v0.3.0

type AlamedaResource struct {
	Namespace string                        `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
	Name      string                        `json:"name" protobuf:"bytes,2,opt,name=name"`
	UID       string                        `json:"uid" protobuf:"bytes,3,opt,name=uid"`
	Pods      map[NamespacedName]AlamedaPod `json:"pods" protobuf:"bytes,4,opt,name=pods"`
}

func (*AlamedaResource) DeepCopy added in v0.3.0

func (in *AlamedaResource) DeepCopy() *AlamedaResource

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaResource.

func (*AlamedaResource) DeepCopyInto added in v0.3.0

func (in *AlamedaResource) DeepCopyInto(out *AlamedaResource)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlamedaScaler

type AlamedaScaler struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   AlamedaScalerSpec   `json:"spec,omitempty"`
	Status AlamedaScalerStatus `json:"status,omitempty"`
}

AlamedaScaler is the Schema for the alamedascalers API +k8s:openapi-gen=true

func (*AlamedaScaler) DeepCopy

func (in *AlamedaScaler) DeepCopy() *AlamedaScaler

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaScaler.

func (*AlamedaScaler) DeepCopyInto

func (in *AlamedaScaler) DeepCopyInto(out *AlamedaScaler)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AlamedaScaler) DeepCopyObject

func (in *AlamedaScaler) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AlamedaScaler) GenCustomResourceVersion added in v0.3.0

func (as *AlamedaScaler) GenCustomResourceVersion() string

func (*AlamedaScaler) GetLabelMapToSetToAlamedaRecommendationLabel added in v0.3.0

func (as *AlamedaScaler) GetLabelMapToSetToAlamedaRecommendationLabel() map[string]string

func (*AlamedaScaler) GetMonitoredPods added in v0.3.0

func (as *AlamedaScaler) GetMonitoredPods() []*AlamedaPod

func (*AlamedaScaler) ResetStatusAlamedaController added in v0.3.0

func (as *AlamedaScaler) ResetStatusAlamedaController()

func (*AlamedaScaler) SetCustomResourceVersion added in v0.3.0

func (as *AlamedaScaler) SetCustomResourceVersion(v string)

func (*AlamedaScaler) SetDefaultValue added in v0.3.13

func (as *AlamedaScaler) SetDefaultValue()

type AlamedaScalerList

type AlamedaScalerList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []AlamedaScaler `json:"items"`
}

AlamedaScalerList contains a list of AlamedaScaler

func (*AlamedaScalerList) DeepCopy

func (in *AlamedaScalerList) DeepCopy() *AlamedaScalerList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaScalerList.

func (*AlamedaScalerList) DeepCopyInto

func (in *AlamedaScalerList) DeepCopyInto(out *AlamedaScalerList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AlamedaScalerList) DeepCopyObject

func (in *AlamedaScalerList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type AlamedaScalerSpec

type AlamedaScalerSpec struct {
	// Important: Run "make" to regenerate code after modifying this file
	Selector        *metav1.LabelSelector `json:"selector" protobuf:"bytes,1,name=selector"`
	EnableExecution enableExecution       `json:"enableexecution" protobuf:"bytes,2,name=enable_execution"`
	// +kubebuilder:validation:Enum=stable,compact
	Policy                alamedaPolicy     `json:"policy,omitempty" protobuf:"bytes,3,opt,name=policy"`
	CustomResourceVersion string            `json:"customResourceVersion,omitempty" protobuf:"bytes,4,opt,name=custom_resource_version"`
	ScalingTools          []scalingToolType `json:"scalingTools,omitempty" protobuf:"bytes,5,opt,name=scaling_tools"`
}

AlamedaScalerSpec defines the desired state of AlamedaScaler INSERT ADDITIONAL SPEC FIELDS - desired state of cluster

func (*AlamedaScalerSpec) DeepCopy

func (in *AlamedaScalerSpec) DeepCopy() *AlamedaScalerSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaScalerSpec.

func (*AlamedaScalerSpec) DeepCopyInto

func (in *AlamedaScalerSpec) DeepCopyInto(out *AlamedaScalerSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlamedaScalerStatus

type AlamedaScalerStatus struct {
	AlamedaController AlamedaController `json:"alamedaController,omitempty" protobuf:"bytes,4,opt,name=alameda_controller"`
}

AlamedaScalerStatus defines the observed state of AlamedaScaler

func (*AlamedaScalerStatus) DeepCopy

func (in *AlamedaScalerStatus) DeepCopy() *AlamedaScalerStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlamedaScalerStatus.

func (*AlamedaScalerStatus) DeepCopyInto

func (in *AlamedaScalerStatus) DeepCopyInto(out *AlamedaScalerStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NamespacedName

type NamespacedName = string

type ScalingToolstruct added in v0.3.13

type ScalingToolstruct struct {
	VpaFlag bool
	HpaFlag bool
}
var (
	ScalingTool ScalingToolstruct = ScalingToolstruct{VpaFlag: false, HpaFlag: false}
)

Jump to

Keyboard shortcuts

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