In OpenShift Pipelines, what is a task?
https://docs.openshift.com/container-platform/4.5/pipelines/understanding-openshift-pipelines.html
Tasksare the building blocks of a Pipeline and consist of sequentially executed Steps. Steps are a series of commands that achieve a specific goal, such as building an image.
Every Task runs as a Pod and each Step runs in its own container within the same Pod. Because Steps run within the same Pod, they have access to the same volumes for caching files, ConfigMaps, and Secrets.
A Task usesinputsparameters, such as a Git resource, andoutputsparameters, such as an image in a registry, to interact with other Tasks. They are reusable and can be used in multiple Pipelines.
Currently there are no comments in this discussion, be the first to comment!