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

Tags: jmlrt/pipeline

Tags

v0.24.1

Toggle v0.24.1's commit message
Revert "Fix issue with "$$" in Script blocks"

This reverts commit 9a9f896.

Attempting to fix instances of "$$" introduced a new bug in the way
bash scripts are interpreted: tektoncd#3935

v0.24.0

Toggle v0.24.0's commit message
Disable the default workingDir and HOME overrides

Prior to this commit Steps were given a default HOME
env var and a default workingDir. These defaults collide
with any value set by the Step's image Dockerfile.

This commit removes the default home and workingDir
overrides (except in those few cases where they're
still expected, like PipelineResources).

See https://groups.google.com/g/tekton-dev/c/C-PL8VYN51E/m/el5Fca_PDAAJ
for our tekton-dev announcement of this change.

See tektoncd#1836 for the
original problem description and workingDir tracking issue.

See tektoncd#2013 for the
HOME change tracking issue.

See https://github.com/tektoncd/pipeline/blob/main/docs/deprecations.md
for our documented dates for these deprecations.

See
https://github.com/tektoncd/pipeline/blob/main/api_compatibility_policy.md#alpha-beta-and-ga
for our beta deprecation policy.
,

v0.23.0

Toggle v0.23.0's commit message
Pull request template spring cleaning 🌷

I removed the blocks on reviewer notes and on updating the release
pipeline for new images because I don't get the impression these were
serving any useful purponse; and I think having noise in the pull
request template might distract people from the important bits, like the
checklist which is still often ignored :(

I also tried to update the checklist to refer our new(ish) guidelines
since I don't think the existing links actually worked anymore 😬

v0.22.0

Toggle v0.22.0's commit message
Disable Webhook PDB by default, document enabling it

v0.21.0

Toggle v0.21.0's commit message
Use crane cp to move images, instead of gcloud

v0.20.1

Toggle v0.20.1's commit message
validate execution status variable

Adding param validation while accessing execution status along with
any other param or extra string. Also, avoiding task results validation as
it follows very similar pattern with $(tasks.taskname.results.status) where
"status" is a result of some task.

(cherry picked from commit 2ec2b86)

v0.20.0

Toggle v0.20.0's commit message
Fix the publish task

The creds init image has been removed from the release tasks and
pipeline, removing the last reference to it from the publish task

Signed-off-by: Andrea Frittoli <andrea.frittoli@uk.ibm.com>

v0.19.0

Toggle v0.19.0's commit message
Do not allow use of deprecated Conditions with custom tasks

v0.18.1

Toggle v0.18.1's commit message
Change the webhook name to pipeline-webhook

The "webhook" name is too generic and it creates conflicts on leases
when other services (like triggers) that use leader election run in
same namespace but with different configuration.

Fixes tektoncd#3529

Co-authored-by: Matt Moore <mattmoor@vmware.com>

Signed-off-by: Andrea Frittoli <andrea.frittoli@uk.ibm.com>
(cherry picked from commit 747f4ba)

v0.18.0

Toggle v0.18.0's commit message
Refactor the way timeouts are handled

`{Task,Pipeline}Run` now handle timeouts via `EnqueueAfter` on the workqueue.

`pkg/timeout` is now removed.

We now have consistent `GetTimeout(ctx)` methods on types.
0