Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the bigdata v1alpha1 API group +kubebuilder:object:generate=true +groupName=bigdata.kubernetesbigdataeg.org
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "bigdata.kubernetesbigdataeg.org", Version: "v1alpha1"} // 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 Impala ¶
type Impala struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ImpalaSpec `json:"spec,omitempty"` Status ImpalaStatus `json:"status,omitempty"` }
Impala is the Schema for the impalas API
func (*Impala) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Impala.
func (*Impala) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Impala) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ImpalaList ¶
type ImpalaList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Impala `json:"items"` }
ImpalaList contains a list of Impala
func (*ImpalaList) DeepCopy ¶
func (in *ImpalaList) DeepCopy() *ImpalaList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImpalaList.
func (*ImpalaList) DeepCopyInto ¶
func (in *ImpalaList) DeepCopyInto(out *ImpalaList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ImpalaList) DeepCopyObject ¶
func (in *ImpalaList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ImpalaSpec ¶
type ImpalaSpec struct { // Size defines the number of Impala instances // The following markers will use OpenAPI v3 schema to validate the value // More info: https://book.kubebuilder.io/reference/markers/crd-validation.html // +kubebuilder:validation:Minimum=1 // +kubebuilder:validation:Maximum=3 // +kubebuilder:validation:ExclusiveMaximum=false MasterSize int32 `json:"masterSize,omitempty"` WorkerSize int32 `json:"workerSize,omitempty"` }
ImpalaSpec defines the desired state of Impala
func (*ImpalaSpec) DeepCopy ¶
func (in *ImpalaSpec) DeepCopy() *ImpalaSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImpalaSpec.
func (*ImpalaSpec) DeepCopyInto ¶
func (in *ImpalaSpec) DeepCopyInto(out *ImpalaSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImpalaStatus ¶
type ImpalaStatus struct {
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
}
ImpalaStatus defines the observed state of Impala
func (*ImpalaStatus) DeepCopy ¶
func (in *ImpalaStatus) DeepCopy() *ImpalaStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImpalaStatus.
func (*ImpalaStatus) DeepCopyInto ¶
func (in *ImpalaStatus) DeepCopyInto(out *ImpalaStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.