I have 2 Tekton Pipeline
s A
and B
. I want to trigger execution of pipeline B
when pipeline A
completes.
My current workaround is to have Task
in the end of pipeline A
which sends REST request to Tekton's EventListener
(which is already part of my system, because pipeline A
builds code from GitLab, so it listens GitLab events). So I'm just masking my request as if it was from GitLab and pipeline B
triggered.
I wonder if here is better way to do that? I'm aware of Pipeline inside pipeline feature, but it seems like steps from one pipeline will be included into another which is not what I want.
Thanks in advance!