Skip to content

Tags: redhat-openshift-ecosystem/operator-pipelines

Tags

v1.1.4

Toggle v1.1.4's commit message
Fix vulnerable library

Signed-off-by: Ales Raszka <[email protected]>

v1.1.3

Toggle v1.1.3's commit message
Bump up vulnerable library

Signed-off-by: Ales Raszka <[email protected]>

v1.1.2

Toggle v1.1.2's commit message
Add 401 and 403 to Retryable error IIB codes

We see a random 40x authentication codes from IIB when making a request.
The updated sessions add these codes to retryable errors and try it
again.

Signed-off-by: Ales Raszka <[email protected]>

v1.1.1

Toggle v1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
update preflight sha for 1.15.2 release (#867)

Signed-off-by: Adam D. Cornett <[email protected]>

v1.1.0

Toggle v1.1.0's commit message
Update ansible-vault encryption for non-prod community certs

v1.0.193

Toggle v1.0.193's commit message
enabling 4.20 to be used in the hosted pipeline

Signed-off-by: Adam D. Cornett <[email protected]>

v1.0.192

Toggle v1.0.192's commit message
fix: Merge task fails with automerge

Due to what seems to be like a bug in github CLI or directly in Github
the --auto is now replaced with --admin.

The auto flag sometimes raised a Graphql error from which it was hard to
tell what's wrong. The issue was pretty non-deterministic and pretty
much failed randomly. A local testing didn't prove the issue on our
site. This issue was most likely introduced by start using the Github
CLI utility. Previously the merge was done using direct API calls to
REST. The current CLI tool uses GraphQL.

At the point when pipelines wants to merge the PR we already know
whether a test passed or failed so it is safe to use --admin and merge
the PR immediately.

JIRA: ISV-6111

Signed-off-by: Ales Raszka <[email protected]>

v1.0.191

Toggle v1.0.191's commit message
Add queued label to PR for events in queue

A webhook dispatcher sets a PR label once there is not enough capacity
on a cluster and event gets in a queue.

The queue label matches a current label pattern for each pipeline. The
example for hosted pipeline is "operator-hosted-pipeline/queued". This
format makes sure the label is removed once the pipeline starts
processing the PR.

The label is set only once when the event gets in a queue. The event
corresponding DB entry is also changed to indicate queued status.

JIRA: ISV-6265

Signed-off-by: Ales Raszka <[email protected]>

v1.0.190

Toggle v1.0.190's commit message
fix: syntax and semantic error in Bash if condition

The are couple of issues with this line:
 - missing space at the end of the condition
 - semantic issue - the condition is always evaluated to True

Signed-off-by: Ales Raszka <[email protected]>

v1.0.189

Toggle v1.0.189's commit message
Add support for CEL filters to dispatcher

A dispatcher is now capable to filter out invalid events using CEL
expressions. This allows us to filter out invalid events on dispatcher
level and stop the request before reaching Tekton pipeline listeners.

JIRA: ISV-6225

Signed-off-by: Ales Raszka <[email protected]>