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

Tags: Ern-st/pipeline

Tags

v0.47.2

Toggle v0.47.2's commit message
rebase conflict for v0.47

v0.44.3

Toggle v0.44.3's commit message
Fix bundle conversion for pipelineRef

This commit fixes the bundle conversion for PipelineRef which should
be converting to the bundle Resolver with a Pipeline kind. It also adds
the conversion integration tests for the bundle logics to prevent such
error. It extracts the setup for bundle and makes it into a helper function.

v0.41.3

Toggle v0.41.3's commit message
wip

v0.48.0

Toggle v0.48.0's commit message
update affinity assistant creation implementation

Before this commit, the affinity assistant was created in the beginning of
the pipleineRun. And the same affinity assistant was relied on for the
entire lifecycle of a PR. Now, there could be a case when the node
on which affinity assistant pod is created goes down. In this case,
the rest of the pipelineRun is stuck and cannot run to the completition
since the affinity assistant (StatefulSet) tries to schedule rest
of the pods (taskRuns) on the same node but that node is cordoned or not
scheduling anything new.

This commit always makes an attempt to create Affinity Assistant (StatefulSet)
in case it does not exist. If it exist, the controller checks if the node on
which Affinity Assistant pod is created is healthy to schedule subsequent
pods. If not, the controller deletes Affinity Assistant pod so that
StatefulSet can upscale the replicas (set to 1) on other node in the cluster.

Signed-off-by: Priti Desai <pdesai@us.ibm.com>

v0.47.1

Toggle v0.47.1's commit message
don't return validation error when taskrun failed/skipped

This commit aims to fix tektoncd#6383, tektoncd#6139 and supports tektoncd#3749. This commits
skip the validation if the taskrun is not successful (e.g. failed or skipped) and
omit the pipelinerun coresponding result. This way the skipped taskrun
won't get validation error for pipelinerun. And the pipelinerun error
won't be overwritten by the validation error.

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

v0.47.0

Toggle v0.47.0's commit message
Remove alpha1 Runs Client setup in init test

This commit removes the alpha1 Runs client setup in init_test
because the v1alpha1 Run support has been removed according to
TEP-114. The error occurs during e2e tests that is introduced as
a flake:
ie. https://storage.googleapis.com/tekton-prow/pr-logs/pull/tektoncd_pipeline/6567/pull-tekton-pipeline-alpha-integration-tests/1649045464097492992/build-log.txt

v0.44.2

Toggle v0.44.2's commit message
Fix no logs in stdout/stderr if uses stdoutConfig

used to only collect stdout and err to a file if the std{out/err}Path is specified, now add both os.std{out/err} and the std{out/err}Path to multiwriter to collect logs

v0.41.2

Toggle v0.41.2's commit message
Hotfix no logs in stdout/stderr if uses stdoutConfig [source fix pr](t…

…ektoncd#6162)

used to only collect stdout and err to a file if the std{out/err}Path is specified, now add both os.std{out/err} and the std{out/err}Path to multiwriter to collect logs

io/ioutil has been deprecaed in Go 1.16

Signed-off-by: chengjoey <zchengjoey@gmail.com>

v0.46.0

Toggle v0.46.0's commit message
Bump github.com/spiffe/go-spiffe/v2 from 2.1.2 to 2.1.3

Bumps [github.com/spiffe/go-spiffe/v2](https://github.com/spiffe/go-spiffe) from 2.1.2 to 2.1.3.
- [Release notes](https://github.com/spiffe/go-spiffe/releases)
- [Changelog](https://github.com/spiffe/go-spiffe/blob/main/CHANGELOG.md)
- [Commits](spiffe/go-spiffe@v2.1.2...v2.1.3)

---
updated-dependencies:
- dependency-name: github.com/spiffe/go-spiffe/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

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
0