Lee Bernick
Lee Bernick
Today, retries in Pipeline Tasks are implemented via the following process: - If a TaskRun fails and the Pipeline Task has retries specified, the PipelineRun controller will clear the status...
Recently, we have had a few issues of regressions that were not detected by CI. For example, https://github.com/tektoncd/pipeline/pull/4834 introduced changes that caused a new client to be incompatible with an...
### Feature request We already have [pipelineRun.spec.taskRunSpecs](https://github.com/tektoncd/pipeline/blob/bf8be59f43dd81ef2f26102ae5b3c91e22e30bdb/pkg/apis/pipeline/v1beta1/pipelinerun_types.go#L229), but it might be nice to be able to specify a TaskRun configuration that applies to every TaskRun in the PipelineRun by default....
### Feature request Currently, users can set resource requests and limits at the Step level, which are summed to determine the resource requests of the pod that runs a TaskRun....
In order to write better integration/e2e tests for custom Tasks, it would be useful to have a controller that watches for Runs of some kind we just use for testing,...
Today, [Pipeline Task timeouts](https://tekton.dev/docs/pipelines/pipelines/#configuring-the-failure-timeout) work in a way that I find confusing for Custom Tasks. The PipelineRun reconciler [passes the pipeline task timeout down to a newly created run](https://github.com/tektoncd/pipeline/blob/deb0fec6e861ed9c74c7f43791b6e52823a62e0d/pkg/reconciler/pipelinerun/pipelinerun.go#L892), [and...
This issue tracks the release of a v1 version of the PipelineRun CRD. More details in #4983.
# Changes This commit adds support for Task.Resources when converting between v1beta1 and v1 versions of Tasks. This will allow us to release v1 Task in a backwards compatible way,...
# Behavior described in [docs](https://github.com/tektoncd/pipeline/blob/main/docs/compute-resources.md#limits) If a taskrun is created with resource requirements inconsistent with a limitrange (e.g. requests < min or limits > max), the resource requirements will be...
# Changes This commit adds a v1 version of the Task CRD, and support to the webhook. Since this version is not served, it will not be available to users....