Documentation ¶
Overview ¶
Package v1 contains API Schema definitions for the basic v1 API group +kubebuilder:object:generate=true +groupName=basic.sample-operator.dev
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "basic.sample-operator.dev", 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 BasicVolume ¶
type BasicVolume struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec BasicVolumeSpec `json:"spec,omitempty"` Status BasicVolumeStatus `json:"status,omitempty"` }
BasicVolume is the Schema for the basicvolumes API
func (*BasicVolume) DeepCopy ¶
func (in *BasicVolume) DeepCopy() *BasicVolume
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicVolume.
func (*BasicVolume) DeepCopyInto ¶
func (in *BasicVolume) DeepCopyInto(out *BasicVolume)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BasicVolume) DeepCopyObject ¶
func (in *BasicVolume) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type BasicVolumeList ¶
type BasicVolumeList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []BasicVolume `json:"items"` }
BasicVolumeList contains a list of BasicVolume
func (*BasicVolumeList) DeepCopy ¶
func (in *BasicVolumeList) DeepCopy() *BasicVolumeList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicVolumeList.
func (*BasicVolumeList) DeepCopyInto ¶
func (in *BasicVolumeList) DeepCopyInto(out *BasicVolumeList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BasicVolumeList) DeepCopyObject ¶
func (in *BasicVolumeList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type BasicVolumeSpec ¶
type BasicVolumeSpec struct { // Foo is an example field of BasicVolume. Edit basicvolume_types.go to remove/update Name string `json:"name,omitempty"` Size int `json:"size,omitempty"` }
BasicVolumeSpec defines the desired state of BasicVolume
func (*BasicVolumeSpec) DeepCopy ¶
func (in *BasicVolumeSpec) DeepCopy() *BasicVolumeSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicVolumeSpec.
func (*BasicVolumeSpec) DeepCopyInto ¶
func (in *BasicVolumeSpec) DeepCopyInto(out *BasicVolumeSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BasicVolumeStatus ¶
type BasicVolumeStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file Name string `json:"name,omitempty"` }
BasicVolumeStatus defines the observed state of BasicVolume
func (*BasicVolumeStatus) DeepCopy ¶
func (in *BasicVolumeStatus) DeepCopy() *BasicVolumeStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicVolumeStatus.
func (*BasicVolumeStatus) DeepCopyInto ¶
func (in *BasicVolumeStatus) DeepCopyInto(out *BasicVolumeStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.