Tasks

Overview

Tasks are a fundamental unit of the Ozone's CI/CD workflow; which is based on the Tekton Framework by Google. Tasks are comprised of steps & tasks run as pods in any kubernetes cluster.

For an in-depth description of tasks, please check the official documentation of tekton out

Tekton tasks run in a cloud native fashion as pods, making them cloud agnostic and portable. In addition, steps are created as containers within a pod; thus enabling them share access to the same volumes for I/O

Tasks are templates. An instance of their execution is represented by the TaskRun object

Last updated