tekton

How to emit result in Tekton with python script?

How to emit result in Tekton with python script? Question: I my Tekton pipeline I want to emit a result so that $(results.myresult) can be used in the next pipeline task. The code looks like this: apiVersion: tekton.dev/v1beta1 kind: Task name: foo namespace: bar … spec: results: – name: myresult script: | #!/usr/bin/env bash # …

Total answers: 2