Create the Tekton Pipeline
Let's the build and deploy Tasks using Tekton Pipelines directly through the manifest.
We'll cover the following...
The build-deploy
Pipeline
A Pipeline in Tekton is a collection of Tasks that we define and arrange in a specific order of execution. We’ll create a Pipeline of the build
and deploy
Tasks we created earlier. We’ve already created a file named pipeline-build-deploy.yaml
, as shown in the widget below.
The Pipeline definition defines some parameters it needs to be able to run. It consists of two Tasks: one to build an image and the other to deploy the service. Each Task ...