Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the populator v1alpha1 API group +kubebuilder:object:generate=true +groupName=populator.volume.konveyor.dev
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "populator.volume.konveyor.dev", 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 Rsync ¶
type Rsync struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RsyncSpec `json:"spec,omitempty"` Status RsyncStatus `json:"status,omitempty"` }
Rsync is the Schema for the rsyncs API
func (*Rsync) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rsync.
func (*Rsync) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Rsync) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RsyncList ¶
type RsyncList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Rsync `json:"items"` }
RsyncList contains a list of Rsync
func (*RsyncList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RsyncList.
func (*RsyncList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RsyncList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RsyncSpec ¶
type RsyncSpec struct { // SourcePVC Name and Namespace of PVC for which rsync volume populator will // be run in source cluster SourcePVC corev1.ObjectReference `json:"sourcePVC"` }
RsyncSpec defines the desired state of Rsync
func (*RsyncSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RsyncSpec.
func (*RsyncSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RsyncStatus ¶
type RsyncStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file Phase string `json:"phase"` }
RsyncStatus defines the observed state of Rsync
func (*RsyncStatus) DeepCopy ¶
func (in *RsyncStatus) DeepCopy() *RsyncStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RsyncStatus.
func (*RsyncStatus) DeepCopyInto ¶
func (in *RsyncStatus) DeepCopyInto(out *RsyncStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.