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 Solr ¶
type Solr struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec SolrSpec `json:"spec,omitempty"` Status SolrStatus `json:"status,omitempty"` }
Solr is the Schema for the solrs API
func (*Solr) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Solr.
func (*Solr) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Solr) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SolrList ¶
type SolrList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Solr `json:"items"` }
SolrList contains a list of Solr
func (*SolrList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SolrList.
func (*SolrList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SolrList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SolrSpec ¶
type SolrSpec struct { // Size defines the number of Solr 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 Size int32 `json:"size,omitempty"` Zookeeper string `json:"zookeeper,omitempty"` }
SolrSpec defines the desired state of Solr
func (*SolrSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SolrSpec.
func (*SolrSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SolrStatus ¶
type SolrStatus struct {
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
}
SolrStatus defines the observed state of Solr
func (*SolrStatus) DeepCopy ¶
func (in *SolrStatus) DeepCopy() *SolrStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SolrStatus.
func (*SolrStatus) DeepCopyInto ¶
func (in *SolrStatus) DeepCopyInto(out *SolrStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.