Documentation
¶
Overview ¶
Package v1 contains API Schema definitions for the routing v1 API group +kubebuilder:object:generate=true +groupName=routing.andrewneudegg.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "routing.andrewneudegg.com", 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 Delta ¶
type Delta struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec DeltaSpec `json:"spec,omitempty"` Status DeltaStatus `json:"status,omitempty"` }
Delta is the Schema for the delta API
func (*Delta) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Delta.
func (*Delta) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Delta) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DeltaList ¶
type DeltaList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Delta `json:"items"` }
DeltaList contains a list of Delta
func (*DeltaList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeltaList.
func (*DeltaList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DeltaList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DeltaSpec ¶
type DeltaSpec struct { // Name specifies the name of the created delta cluster. Name string `json:"name,omitempty"` // Count specifies the number of replicas. Count int32 `json:"count,omitempty"` // Spec for the generated pods. Template corev1.PodTemplateSpec `json:"template,omitempty"` // DeltaConfig contains the core pipeline configs. DeltaConfig string `json:"deltaConfig,omitempty"` }
DeltaSpec defines the desired state of Delta
func (*DeltaSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeltaSpec.
func (*DeltaSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DeltaStatus ¶
type DeltaStatus struct { }
DeltaStatus defines the observed state of Delta
func (*DeltaStatus) DeepCopy ¶
func (in *DeltaStatus) DeepCopy() *DeltaStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeltaStatus.
func (*DeltaStatus) DeepCopyInto ¶
func (in *DeltaStatus) DeepCopyInto(out *DeltaStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.