Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the appstudio v1alpha1 API group +kubebuilder:object:generate=true +groupName=appstudio.redhat.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "appstudio.redhat.com", 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 ApplicationSpec ¶
type ApplicationSpec struct { // +kubebuilder:validation:Pattern=^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ // Specifies the name of the application for which to run Mintmaker. // Required. // +required Application string `json:"application"` // Specifies the list of components of an application for which to run MintMaker. // If omitted, MintMaker will run for all application's components. // +optional Components []Component `json:"components,omitempty"` }
func (*ApplicationSpec) DeepCopy ¶
func (in *ApplicationSpec) DeepCopy() *ApplicationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSpec.
func (*ApplicationSpec) DeepCopyInto ¶
func (in *ApplicationSpec) DeepCopyInto(out *ApplicationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Component ¶
type Component string
+kubebuilder:validation:Pattern=^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ +kubebuilder:validation:MaxLength=63
type DependencyUpdateCheck ¶
type DependencyUpdateCheck struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec DependencyUpdateCheckSpec `json:"spec,omitempty"` Status DependencyUpdateCheckStatus `json:"status,omitempty"` }
DependencyUpdateCheck is the Schema for the dependencyupdatechecks API
func (*DependencyUpdateCheck) DeepCopy ¶
func (in *DependencyUpdateCheck) DeepCopy() *DependencyUpdateCheck
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DependencyUpdateCheck.
func (*DependencyUpdateCheck) DeepCopyInto ¶
func (in *DependencyUpdateCheck) DeepCopyInto(out *DependencyUpdateCheck)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DependencyUpdateCheck) DeepCopyObject ¶
func (in *DependencyUpdateCheck) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DependencyUpdateCheckList ¶
type DependencyUpdateCheckList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []DependencyUpdateCheck `json:"items"` }
DependencyUpdateCheckList contains a list of DependencyUpdateCheck
func (*DependencyUpdateCheckList) DeepCopy ¶
func (in *DependencyUpdateCheckList) DeepCopy() *DependencyUpdateCheckList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DependencyUpdateCheckList.
func (*DependencyUpdateCheckList) DeepCopyInto ¶
func (in *DependencyUpdateCheckList) DeepCopyInto(out *DependencyUpdateCheckList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DependencyUpdateCheckList) DeepCopyObject ¶
func (in *DependencyUpdateCheckList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DependencyUpdateCheckSpec ¶
type DependencyUpdateCheckSpec struct { // Specifies the list of workspaces for which to run MintMaker. // If omitted, MintMaker will run for all workspaces. // +optional Workspaces []WorkspaceSpec `json:"workspaces,omitempty"` }
DependencyUpdateCheckSpec defines the desired state of DependencyUpdateCheck
func (*DependencyUpdateCheckSpec) DeepCopy ¶
func (in *DependencyUpdateCheckSpec) DeepCopy() *DependencyUpdateCheckSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DependencyUpdateCheckSpec.
func (*DependencyUpdateCheckSpec) DeepCopyInto ¶
func (in *DependencyUpdateCheckSpec) DeepCopyInto(out *DependencyUpdateCheckSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DependencyUpdateCheckStatus ¶
type DependencyUpdateCheckStatus struct { }
DependencyUpdateCheckStatus defines the observed state of DependencyUpdateCheck
func (*DependencyUpdateCheckStatus) DeepCopy ¶
func (in *DependencyUpdateCheckStatus) DeepCopy() *DependencyUpdateCheckStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DependencyUpdateCheckStatus.
func (*DependencyUpdateCheckStatus) DeepCopyInto ¶
func (in *DependencyUpdateCheckStatus) DeepCopyInto(out *DependencyUpdateCheckStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WorkspaceSpec ¶
type WorkspaceSpec struct { // +kubebuilder:validation:Pattern=^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ //Specifies the name of the workspace for which to run Mintmaker. // Required. // +required Workspace string `json:"workspace"` // Specifies the list of applications in a workspace for which to run MintMaker. // If omitted, MintMaker will run for all workspace's applications. // +optional Applications []ApplicationSpec `json:"applications,omitempty"` }
func (*WorkspaceSpec) DeepCopy ¶
func (in *WorkspaceSpec) DeepCopy() *WorkspaceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceSpec.
func (*WorkspaceSpec) DeepCopyInto ¶
func (in *WorkspaceSpec) DeepCopyInto(out *WorkspaceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.