Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the v1alpha1 API group +kubebuilder:object:generate=true +groupName=core.conure.io
Index ¶
- Constants
- Variables
- type AccessType
- type Action
- type ActionDefinition
- type ActionDefinitionList
- type ActionDefinitionSpec
- type ActionDefinitionStatus
- type Application
- type ApplicationComponentStatus
- type ApplicationConditionReason
- type ApplicationConditionType
- type ApplicationList
- type ApplicationSpec
- type ApplicationStatus
- type Component
- type ComponentConditionReason
- type ComponentConditionType
- type ComponentList
- type ComponentSpec
- type ComponentStatus
- type ComponentTemplate
- type ComponentTemplateMetadata
- type Network
- type Port
- type Protocol
- type Resources
- type Source
- type Storage
- type Values
- type Workflow
- type WorkflowConditionReason
- type WorkflowConditionType
- type WorkflowList
- type WorkflowRun
- type WorkflowRunList
- type WorkflowRunSpec
- type WorkflowRunStatus
- type WorkflowSpec
- type WorkflowStatus
Constants ¶
const ( ApplicationConditionTypeStatus ApplicationConditionType = "Status" ApplicationStatusReasonRendering ApplicationConditionReason = "RenderingComponent" ApplicationStatusReasonRenderingFailed ApplicationConditionReason = "RenderingComponentFailed" ApplicationStatusReasonDeployed ApplicationConditionReason = "Deployed" )
const ( WorkflowRunNamelabel = "conure.io/workflow-run-name" ApplySetsAnnotation = "conure.io/apply-sets" )
const ( ComponentConditionTypeWorkflow ComponentConditionType = "Workflow" ComponentWorkflowTriggeredReason ComponentConditionReason = "WorkflowTriggered" ComponentWorkflowRunningReason ComponentConditionReason = "WorkflowRunning" ComponentWorkFlowFailedReason ComponentConditionReason = "WorkflowFailed" ComponentWorkFlowSucceedReason ComponentConditionReason = "WorkflowSucceed" )
const ( ComponentConditionTypeReady ComponentConditionType = "Ready" ComponentReadyPendingReason ComponentConditionReason = "Pending" ComponentReadyRenderingReason ComponentConditionReason = "Rendering" ComponentReadyRenderingFailedReason ComponentConditionReason = "RenderingFailed" ComponentReadyRenderingSucceedReason ComponentConditionReason = "RenderingSucceed" ComponentReadyDeployingReason ComponentConditionReason = "Deploying" ComponentReadyDeployingFailedReason ComponentConditionReason = "DeployingFailed" ComponentReadyDeployingSucceedReason ComponentConditionReason = "DeployingSucceed" ComponentReadyRunningReason ComponentConditionReason = "Running" )
const ( ConditionTypeRunningAction WorkflowConditionType = "RunningAction" RunningActionRenderingReason WorkflowConditionReason = "RunningActionRendering" RunningActionFailedReason WorkflowConditionReason = "RunningActionFailed" RunningActionSucceedReason WorkflowConditionReason = "RunningActionSucceed" RunningActionReason WorkflowConditionReason = "RunningAction" ConditionTypeFinishedAction WorkflowConditionType = "FinishedAction" FinishedActionReason WorkflowConditionReason = "FinishedAction" ConditionTypeFinished WorkflowConditionType = "Finished" FinishedSuccessfullyReason WorkflowConditionReason = "FinishedSuccessfully" FinishedFailedReason WorkflowConditionReason = "FinishedFailed" )
const ComponentKind = "Component"
const (
WorkflowActionNamelabel = "conure.io/workflow-action-name"
)
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "core.conure.io", Version: "v1alpha1"} SchemeGroupVersion = GroupVersion // For compatibility with client-gen code // 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 AccessType ¶
type AccessType string
const ( Public AccessType = "public" Private AccessType = "private" )
type Action ¶
type Action struct { Name string `json:"name"` Type string `json:"type"` Values *runtime.RawExtension `json:"values"` }
func (*Action) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Action.
func (*Action) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ActionDefinition ¶
type ActionDefinition struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ActionDefinitionSpec `json:"spec,omitempty"` Status ActionDefinitionStatus `json:"status,omitempty"` }
ActionDefinition is the Schema for the actionDefinition API +kubebuilder:subresource:status +kubebuilder:resource:scope=Namespaced +genclient
func (*ActionDefinition) DeepCopy ¶
func (in *ActionDefinition) DeepCopy() *ActionDefinition
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionDefinition.
func (*ActionDefinition) DeepCopyInto ¶
func (in *ActionDefinition) DeepCopyInto(out *ActionDefinition)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ActionDefinition) DeepCopyObject ¶
func (in *ActionDefinition) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ActionDefinitionList ¶
type ActionDefinitionList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ActionDefinition `json:"items"` }
ActionDefinitionList contains a list of ActionDefinitions
func (*ActionDefinitionList) DeepCopy ¶
func (in *ActionDefinitionList) DeepCopy() *ActionDefinitionList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionDefinitionList.
func (*ActionDefinitionList) DeepCopyInto ¶
func (in *ActionDefinitionList) DeepCopyInto(out *ActionDefinitionList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ActionDefinitionList) DeepCopyObject ¶
func (in *ActionDefinitionList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ActionDefinitionSpec ¶
type ActionDefinitionSpec struct { OCIRepository string `json:"ociRepository"` OCITag string `json:"ociTag"` ConfigDocs string `json:"configDocs"` }
ActionDefinitionSpec defines the desired state of ActionDefinition
func (*ActionDefinitionSpec) DeepCopy ¶
func (in *ActionDefinitionSpec) DeepCopy() *ActionDefinitionSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionDefinitionSpec.
func (*ActionDefinitionSpec) DeepCopyInto ¶
func (in *ActionDefinitionSpec) DeepCopyInto(out *ActionDefinitionSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ActionDefinitionStatus ¶
type ActionDefinitionStatus struct { }
ActionDefinitionStatus defines the observed state of ActionDefinition
func (*ActionDefinitionStatus) DeepCopy ¶
func (in *ActionDefinitionStatus) DeepCopy() *ActionDefinitionStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActionDefinitionStatus.
func (*ActionDefinitionStatus) DeepCopyInto ¶
func (in *ActionDefinitionStatus) DeepCopyInto(out *ActionDefinitionStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Application ¶
type Application struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ApplicationSpec `json:"spec,omitempty"` Status ApplicationStatus `json:"status,omitempty"` }
Application is the Schema for the applications API
func (*Application) DeepCopy ¶
func (in *Application) DeepCopy() *Application
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application.
func (*Application) DeepCopyInto ¶
func (in *Application) DeepCopyInto(out *Application)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Application) DeepCopyObject ¶
func (in *Application) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ApplicationComponentStatus ¶
type ApplicationComponentStatus struct { ComponentName string `json:"componentName"` ComponentType string `json:"componentType"` Reason ComponentConditionReason `json:"reason"` }
func (*ApplicationComponentStatus) DeepCopy ¶
func (in *ApplicationComponentStatus) DeepCopy() *ApplicationComponentStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationComponentStatus.
func (*ApplicationComponentStatus) DeepCopyInto ¶
func (in *ApplicationComponentStatus) DeepCopyInto(out *ApplicationComponentStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ApplicationConditionReason ¶
type ApplicationConditionReason string
func (ApplicationConditionReason) String ¶
func (t ApplicationConditionReason) String() string
type ApplicationConditionType ¶
type ApplicationConditionType string
func (ApplicationConditionType) String ¶
func (t ApplicationConditionType) String() string
type ApplicationList ¶
type ApplicationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Application `json:"items"` }
ApplicationList contains a list of Application
func (*ApplicationList) DeepCopy ¶
func (in *ApplicationList) DeepCopy() *ApplicationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationList.
func (*ApplicationList) DeepCopyInto ¶
func (in *ApplicationList) DeepCopyInto(out *ApplicationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ApplicationList) DeepCopyObject ¶
func (in *ApplicationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ApplicationSpec ¶
type ApplicationSpec struct {
Components []ComponentTemplate `json:"components"`
}
ApplicationSpec defines the desired state of Application
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 ApplicationStatus ¶
type ApplicationStatus struct { Conditions []metav1.Condition `json:"conditions,omitempty"` Components []ApplicationComponentStatus `json:"components,omitempty"` ReadyComponents int `json:"readyComponents,omitempty"` TotalComponents int `json:"totalComponents,omitempty"` }
ApplicationStatus defines the observed state of Application
func (*ApplicationStatus) DeepCopy ¶
func (in *ApplicationStatus) DeepCopy() *ApplicationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationStatus.
func (*ApplicationStatus) DeepCopyInto ¶
func (in *ApplicationStatus) DeepCopyInto(out *ApplicationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Component ¶
type Component struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ComponentSpec `json:"spec,omitempty"` Status ComponentStatus `json:"status,omitempty"` }
Component A component is a part of an application and represents a single unit of deployment.
func (*Component) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Component.
func (*Component) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Component) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ComponentConditionReason ¶
type ComponentConditionReason string
func (ComponentConditionReason) String ¶
func (t ComponentConditionReason) String() string
type ComponentConditionType ¶
type ComponentConditionType string
func (ComponentConditionType) String ¶
func (t ComponentConditionType) String() string
type ComponentList ¶
type ComponentList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Component `json:"items"` }
func (*ComponentList) DeepCopy ¶
func (in *ComponentList) DeepCopy() *ComponentList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentList.
func (*ComponentList) DeepCopyInto ¶
func (in *ComponentList) DeepCopyInto(out *ComponentList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ComponentList) DeepCopyObject ¶
func (in *ComponentList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ComponentSpec ¶
type ComponentSpec struct { ComponentType string `json:"type"` OCIRepository string `json:"ociRepository"` OCITag string `json:"ociTag"` Values Values `json:"values"` }
func (*ComponentSpec) DeepCopy ¶
func (in *ComponentSpec) DeepCopy() *ComponentSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentSpec.
func (*ComponentSpec) DeepCopyInto ¶
func (in *ComponentSpec) DeepCopyInto(out *ComponentSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComponentStatus ¶
func (*ComponentStatus) DeepCopy ¶
func (in *ComponentStatus) DeepCopy() *ComponentStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentStatus.
func (*ComponentStatus) DeepCopyInto ¶
func (in *ComponentStatus) DeepCopyInto(out *ComponentStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComponentTemplate ¶
type ComponentTemplate struct { ComponentTemplateMetadata `json:"metadata"` Spec ComponentSpec `json:"spec,omitempty"` }
ComponentTemplate is simply a template for adding inline components into an application.
func (*ComponentTemplate) DeepCopy ¶
func (in *ComponentTemplate) DeepCopy() *ComponentTemplate
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentTemplate.
func (*ComponentTemplate) DeepCopyInto ¶
func (in *ComponentTemplate) DeepCopyInto(out *ComponentTemplate)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComponentTemplateMetadata ¶
type ComponentTemplateMetadata struct { Name string `json:"name"` Labels map[string]string `json:"labels,omitempty"` Annotations map[string]string `json:"annotations,omitempty"` }
ComponentTemplateMetadata is the metadata for a ComponentTemplate (Used this in replacement of metav1.ObjectMeta as it wasn't working from some reason).
func (*ComponentTemplateMetadata) DeepCopy ¶
func (in *ComponentTemplateMetadata) DeepCopy() *ComponentTemplateMetadata
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComponentTemplateMetadata.
func (*ComponentTemplateMetadata) DeepCopyInto ¶
func (in *ComponentTemplateMetadata) DeepCopyInto(out *ComponentTemplateMetadata)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Network ¶
type Network struct { Exposed bool `json:"exposed"` Type AccessType `json:"type"` Ports []Port `json:"ports"` }
func (*Network) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Network.
func (*Network) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Port ¶
type Port struct { HostPort int `json:"hostPort"` TargetPort int `json:"targetPort"` Protocol Protocol `json:"protocol"` }
func (*Port) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Port.
func (*Port) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Resources ¶
type Resources struct { Replicas int `json:"replicas"` CPU string `json:"cpu"` Memory string `json:"memory"` }
func (*Resources) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Resources.
func (*Resources) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Source ¶
type Source struct { SourceType string `json:"sourceType"` GitRepository string `json:"gitRepository,omitempty"` GitBranch string `json:"gitBranch,omitempty"` BuildTool string `json:"buildTool,omitempty"` DockerfilePath string `json:"dockerfilePath,omitempty"` NixpackPath string `json:"nixpackPath,omitempty"` OCIRepository string `json:"ociRepository,omitempty"` Tag string `json:"tag,omitempty"` Command []string `json:"command"` WorkingDir string `json:"workingDir"` ImagePullSecretsName string `json:"imagePullSecretsName"` }
func (*Source) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Source.
func (*Source) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Storage ¶
type Storage struct { Size string `json:"size"` Name string `json:"name"` MountPath string `json:"mountPath"` }
func (*Storage) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Storage.
func (*Storage) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Values ¶
type Values struct { Resources Resources `json:"resources"` Network Network `json:"network"` Source Source `json:"source"` Storage []Storage `json:"storage"` Advanced *runtime.RawExtension `json:"advanced,omitempty"` }
func (*Values) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Values.
func (*Values) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Workflow ¶
type Workflow struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec WorkflowSpec `json:"spec,omitempty"` Status WorkflowStatus `json:"status,omitempty"` }
Workflow is the Schema for the workflows API
func (*Workflow) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Workflow.
func (*Workflow) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Workflow) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type WorkflowConditionReason ¶
type WorkflowConditionReason string
func (WorkflowConditionReason) String ¶
func (t WorkflowConditionReason) String() string
type WorkflowConditionType ¶
type WorkflowConditionType string
func (WorkflowConditionType) String ¶
func (t WorkflowConditionType) String() string
type WorkflowList ¶
type WorkflowList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Workflow `json:"items"` }
WorkflowList contains a list of Workflow
func (*WorkflowList) DeepCopy ¶
func (in *WorkflowList) DeepCopy() *WorkflowList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowList.
func (*WorkflowList) DeepCopyInto ¶
func (in *WorkflowList) DeepCopyInto(out *WorkflowList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*WorkflowList) DeepCopyObject ¶
func (in *WorkflowList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type WorkflowRun ¶
type WorkflowRun struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec WorkflowRunSpec `json:"spec,omitempty"` Status WorkflowRunStatus `json:"status,omitempty"` }
WorkflowRun triggers and records the run of a workflow
func (*WorkflowRun) DeepCopy ¶
func (in *WorkflowRun) DeepCopy() *WorkflowRun
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowRun.
func (*WorkflowRun) DeepCopyInto ¶
func (in *WorkflowRun) DeepCopyInto(out *WorkflowRun)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*WorkflowRun) DeepCopyObject ¶
func (in *WorkflowRun) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type WorkflowRunList ¶
type WorkflowRunList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []WorkflowRun `json:"items"` }
WorkflowRunList contains a list of WorkflowRun
func (*WorkflowRunList) DeepCopy ¶
func (in *WorkflowRunList) DeepCopy() *WorkflowRunList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowRunList.
func (*WorkflowRunList) DeepCopyInto ¶
func (in *WorkflowRunList) DeepCopyInto(out *WorkflowRunList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*WorkflowRunList) DeepCopyObject ¶
func (in *WorkflowRunList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type WorkflowRunSpec ¶
type WorkflowRunSpec struct { WorkflowName string `json:"workflowName"` ApplicationName string `json:"applicationName"` ComponentName string `json:"componentName"` }
WorkflowRunSpec defines the desired state of WorkflowRun
func (*WorkflowRunSpec) DeepCopy ¶
func (in *WorkflowRunSpec) DeepCopy() *WorkflowRunSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowRunSpec.
func (*WorkflowRunSpec) DeepCopyInto ¶
func (in *WorkflowRunSpec) DeepCopyInto(out *WorkflowRunSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WorkflowRunStatus ¶
type WorkflowRunStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file Conditions []metav1.Condition `json:"conditions,omitempty"` }
func (*WorkflowRunStatus) DeepCopy ¶
func (in *WorkflowRunStatus) DeepCopy() *WorkflowRunStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowRunStatus.
func (*WorkflowRunStatus) DeepCopyInto ¶
func (in *WorkflowRunStatus) DeepCopyInto(out *WorkflowRunStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WorkflowSpec ¶
type WorkflowSpec struct {
Actions []Action `json:"actions"`
}
WorkflowSpec defines the desired state of Workflow
func (*WorkflowSpec) DeepCopy ¶
func (in *WorkflowSpec) DeepCopy() *WorkflowSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowSpec.
func (*WorkflowSpec) DeepCopyInto ¶
func (in *WorkflowSpec) DeepCopyInto(out *WorkflowSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WorkflowStatus ¶
type WorkflowStatus struct { }
WorkflowStatus defines the observed state of Workflow
func (*WorkflowStatus) DeepCopy ¶
func (in *WorkflowStatus) DeepCopy() *WorkflowStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkflowStatus.
func (*WorkflowStatus) DeepCopyInto ¶
func (in *WorkflowStatus) DeepCopyInto(out *WorkflowStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.