# Functions
ApplyParameters applies the params from a PipelineRun.Params to a PipelineSpec.
ApplyReplacements replaces placeholders for declared parameters with the specified replacements.
ApplyResourceSubstitution applies resource attribute variable substitution.
GetInputSteps will add the correct `path` to the input resources for pt.
GetOutputSteps will add the correct `path` to the output resources for pt.
GetPipelineConditionStatus will return the Condition that the PipelineRun prName should be updated with, based on the status of the TaskRuns in state.
GetPipelineData will retrieve the Pipeline metadata and Spec associated with the provided PipelineRun.
GetResourcesFromBindings will retrieve all Resources bound in PipelineRun pr and return a map from the declared name of the PipelineResource (which is how the PipelineResource will be referred to in the PipelineRun) to the PipelineResource, obtained via getResource.
ResolvePipelineRun retrieves all Tasks instances which are reference by tasks, getting instances from getTask.
ResolvePipelineTaskResources matches PipelineResources referenced by pt inputs and outputs with the providedResources and returns an instance of ResolvedTaskResources.
Validate that parameters in PipelineRun override corresponding parameters in Pipeline of the same type.
ValidateResourceBindings validate that the PipelineResources declared in Pipeline p are bound in PipelineRun.
WrapSteps will add the correct `paths` to all of the inputs and outputs for pt.
# Constants
ReasonConditionCheckFailed indicates that the reason for the failure status is that the condition check associated to the pipeline task evaluated to false.
ReasonFailed indicates that the reason for the failure status is that one of the TaskRuns failed.
ReasonRunning indicates that the reason for the inprogress status is that the TaskRun is just starting to be reconciled.
ReasonSucceeded indicates that the reason for the finished status is that all of the TaskRuns completed successfully.
ReasonTimedOut indicates that the PipelineRun has taken longer than its configured timeout.
# Structs
No description provided by the author
ResolvedConditionCheck contains a Condition and its associated ConditionCheck, if it exists.
ResolvedPipelineRunTask contains a Task and its associated TaskRun, if it exists.
TaskNotFoundError indicates that the resolution failed because a referenced Task couldn't be retrieved.
# Type aliases
GetCondition is a function used to retrieve PipelineConditions.
GetPipeline is a function used to retrieve Pipelines.
GetTaskRun is a function that will retrieve the TaskRun name.
PipelineRunState is a slice of ResolvedPipelineRunTasks the represents the current execution state of the PipelineRun.
TaskConditionCheckState is a slice of ResolvedConditionCheck the represents the current execution state of Conditions for a Task in a pipeline run.