8000 Tags · ernesgonzalez33/pipeline · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ernesgonzalez33/pipeline

Tags

v0.45.0

Toggle v0.45.0's commit message
Mark config-trusted-resources as deprecated

This commit marks config-trusted-resources as deprecated,
VerificationPolicy has covered the features of config-trusted-resources
so there's no need to keep it.

Signed-off-by: Yongxuan Zhang yongxuanzhang@google.com

v0.41.1

Toggle v0.41.1's commit message
fix task parameter value substitution error due to propagateParams

v0.44.0

Toggle v0.44.0's commit message
fix task parameter value substitution error due to propagateParams

v0.43.2

Toggle v0.43.2's commit message
Fix embedded-status conversion for PipelineRuns

This commit updates conversion for PipelineRun child objects stored in the status
to depend on the value of the feature flag `embedded-status`.

v0.43.1

Toggle v0.43.1's commit message
tekton: fix KO_CONFIG_PATH on release pipeline

- Export the `KO_CONFIG_PATH` variable 🤦
- Using KO_CONFIG_PATH pointing to a file doesn't seem to work with ko
  0.12.0 (ko-build/ko#919)

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>

v0.43.0

Toggle v0.43.0's commit message
docs: fixing wrong matrix syntax in some places

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>

v0.42.0

Toggle v0.42.0's commit message
TEP-0114: Documentation for the initial Custom Task Beta release

This commits provides a documentation for how to define and implement
`v1beta1.CustomRun`.

v0.41.0

Toggle v0.41.0's commit message
Bump HorizontalPodAutoscaler apiVersion to v2

Before this, we get a warning when applying the HPA:

    Warning: autoscaling/v2beta1 HorizontalPodAutoscaler is deprecated in v1.22+, unavailable in v1.25+; use autoscaling/v2 HorizontalPodAutoscaler

This also bumps the min version to 1.23.

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>

v0.40.2

Toggle v0.40.2's commit message
Write TaskRun.Status.TaskSpec with replaced spec on every reconcile run

fixes tektoncd#5574

With tektoncd#5537, the call to `applyParamsContextsResultsAndWorkspaces` and setting of `tr.Status.TaskSpec` to the output of that call was moved from happening with every call to `reconcile` to only happening if there wasn't already a pod created. This didn't cause any problems with execution, but it sometimes resulted in `tr.Status.TaskSpec` not getting set properly or getting reset to `nil` on a subsequent `reconcile` run, with the end result that, sometimes, `tr.Status.TaskSpec` would contain the original `TaskSpec` without parameter, result, context, and workspace references being replaced with the corresponding value. This caused flaky failures in the `TestPipelineRunStatusSpec/pipeline_status_spec_updated` e2e test, and integration test failures in Chains (tektoncd/chains#577).

This change moves the PVC creation out of the `if pod == nil {` block that creates the pod if needed, while still checking if `pod` is `nil` before creating the PVC, and brings the `applyParamsContextsResultsAndWorkspaces` call and setting of `tr.Status.TaskSpec` back out of the pod creation block, but after the possible PVC creation.

Signed-off-by: Andrew Bayer <andrew.bayer@gmail.com>

v0.40.1

Toggle v0.40.1's commit message
Fix taskrun not working with workspace having volumeClaimTemplate

This will move the auto name generation of workspace to happen after
the pvc is created for volumeClaimTemplate and then name will be generated for
workspace of volumeClaimTemplate type

Added an example

Fix tektoncd#5537
0