Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the resolvulator v1alpha1 API group +kubebuilder:object:generate=true +groupName=resolvulator.resolvulator.io
Index ¶
Constants ¶
const ( PhaseNewlyCreated = "" PhaseReachingContextConsensus = "ReachingContextConsensus" PhaseLocalResolution = "LocalResolution" PhaseGlobalResolution = "GlobalResolution" PhaseUnpacking = "Unpacking" PhaseInstalling = "Installing" PhaseInstalled = "Installed" ConditionGlobalResolutionSucceeded = "GlobalResolutionSucceeded" ConditionLocalResolutionSucceeded = "LocalResolutionSucceeded" ConditionUnpacked = "BundleUnpacked" ConditionInstalled = "BundleInstalled" )
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "resolvulator.resolvulator.io", 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 Item ¶
type Item struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ItemSpec `json:"spec,omitempty"` Status ItemStatus `json:"status,omitempty"` }
Item is the Schema for the items API
func (*Item) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Item.
func (*Item) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Item) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ItemList ¶
type ItemList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Item `json:"items"` }
ItemList contains a list of Item
func (*ItemList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ItemList.
func (*ItemList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ItemList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ItemSpec ¶
type ItemSpec struct { Dependencies []string `json:"dependencies,omitempty"` Conflicts []string `json:"conflicts,omitempty"` }
ItemSpec defines the desired state of Item
func (*ItemSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ItemSpec.
func (*ItemSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ItemStatus ¶
type ItemStatus struct { Phase string `json:"phase,omitempty"` ObservedGeneration int64 `json:"observedGeneration,omitempty"` Conditions []metav1.Condition `json:"conditions,omitempty"` }
ItemStatus defines the observed state of Item
func (*ItemStatus) DeepCopy ¶
func (in *ItemStatus) DeepCopy() *ItemStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ItemStatus.
func (*ItemStatus) DeepCopyInto ¶
func (in *ItemStatus) DeepCopyInto(out *ItemStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.