...

/

Introduction to CI/CD and Tekton

Introduction to CI/CD and Tekton

Learn about Tekton and its core components.

We'll cover the following...

What is CI/CD?

Developers continually commit code in small increments (usually several times a day), which is then built and tested before it’s merged.

Continuous integration (CI) refers to our application’s automated building and testing on every new commit. Continuous integration works well with Agile methodologies so that developers work on incremental stories, and the code for those stories is ...