Documentation ¶
Overview ¶
Package v1 contains API Schema definitions for the v1 API group +kubebuilder:object:generate=true +groupName=kaimera.ai
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "kaimera.ai", Version: "v1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type ModelDeployment ¶
type ModelDeployment struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ModelDeploymentSpec `json:"spec,omitempty"` Status ModelDeploymentStatus `json:"status,omitempty"` }
ModelDeployment is the Schema for the modeldeployments API
func (*ModelDeployment) DeepCopy ¶
func (in *ModelDeployment) DeepCopy() *ModelDeployment
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelDeployment.
func (*ModelDeployment) DeepCopyInto ¶
func (in *ModelDeployment) DeepCopyInto(out *ModelDeployment)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ModelDeployment) DeepCopyObject ¶
func (in *ModelDeployment) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ModelDeploymentList ¶
type ModelDeploymentList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ModelDeployment `json:"items"` }
ModelDeploymentList contains a list of ModelDeployment
func (*ModelDeploymentList) DeepCopy ¶
func (in *ModelDeploymentList) DeepCopy() *ModelDeploymentList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelDeploymentList.
func (*ModelDeploymentList) DeepCopyInto ¶
func (in *ModelDeploymentList) DeepCopyInto(out *ModelDeploymentList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ModelDeploymentList) DeepCopyObject ¶
func (in *ModelDeploymentList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ModelDeploymentSpec ¶
type ModelDeploymentSpec struct { ModelName string `json:"modelName,omitempty"` NodeSelectorLabels map[string]string `json:"nodeSelectorLabels,omitempty"` Replicas int32 `json:"replicas,omitempty"` Runtime string `json:"runtime,omitempty"` MaxModelLength int32 `json:"maxModelLength,omitempty"` Provider string `json:"provider,omitempty"` }
ModelDeploymentSpec defines the desired state of ModelDeployment
func (*ModelDeploymentSpec) DeepCopy ¶
func (in *ModelDeploymentSpec) DeepCopy() *ModelDeploymentSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelDeploymentSpec.
func (*ModelDeploymentSpec) DeepCopyInto ¶
func (in *ModelDeploymentSpec) DeepCopyInto(out *ModelDeploymentSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ModelDeploymentStatus ¶
type ModelDeploymentStatus struct { }
ModelDeploymentStatus defines the observed state of ModelDeployment
func (*ModelDeploymentStatus) DeepCopy ¶
func (in *ModelDeploymentStatus) DeepCopy() *ModelDeploymentStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelDeploymentStatus.
func (*ModelDeploymentStatus) DeepCopyInto ¶
func (in *ModelDeploymentStatus) DeepCopyInto(out *ModelDeploymentStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.