How to wait for tekton pipelinRun conditions How to wait for tekton pipelinRun conditions kubernetes kubernetes

How to wait for tekton pipelinRun conditions


I didn't search too far and wide, but it looks like they only have two condition types imported from the knative.dev project?

https://github.com/tektoncd/pipeline/blob/main/vendor/knative.dev/pkg/apis/condition_types.go#L32

The link above is for the imported condition types from the pipeline source code of which it looks like Tekton only uses "Ready" and "Succeeded".

const (    // ConditionReady specifies that the resource is ready.    // For long-running resources.    ConditionReady ConditionType = "Ready"    // ConditionSucceeded specifies that the resource has finished.    // For resource which run to completion.    ConditionSucceeded ConditionType = "Succeeded")

But there may be other imports of this nature elsewhere in the project.