-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Building CI/CD Systems Using Tekton
By :

Once again, it is time for you to test out those newly learned skills. You can find a solution to these problems in the Assessments chapter of this book. These challenges will use the concepts that you have seen in this chapter.
For your first challenge, start by building a pipeline that will output a hello
message. To do so, use the task called logger
that you created in this chapter. The pipeline will take a parameter to indicate who to say hello to, which should default to World
. Run this pipeline with different parameter values using the CLI. Run it with the default values. Do one last run with the parameter value specified in the CLI command directly.
Tips
- This pipeline has a single task.
- The parameter is passed from the pipeline to the task.
- Reuse the previously created task logger.
For this next challenge, build a pipeline that will clone a Git repository and then output...