You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/en/docs/Overview/_index.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -46,9 +46,9 @@ Tekton provides the following benefits to builders and users of CI/CD systems:
46
46
47
47
Tekton consists of the following components:
48
48
49
-
-**[Tekton Pipelines](https://github.com/tektoncd/pipeline/blob/master/docs/README.md)** is the foundation of Tekton. It
49
+
-**[Tekton Pipelines](https://github.com/tektoncd/pipeline/blob/main/docs/README.md)** is the foundation of Tekton. It
50
50
defines a set of Kubernetes [Custom Resources](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)
51
-
that act as building blocks from which you can assemble CI/CD pipelines.
51
+
that act as building blocks from which you can assemble CI/CD pipelines.
52
52
53
53
-**[Tekton Triggers](https://github.com/tektoncd/triggers/blob/main/README.md)** allows you to instantiate pipelines based on events.
54
54
For example, you can trigger the instantiation and execution of a pipeline every time a PR is merged against a GitHub repository. You
@@ -97,17 +97,17 @@ We also recommend having the following items configured on your Kubernetes clust
97
97
98
98
Tekton introduces the concept of `Tasks`, which specify the workloads you want to run:
99
99
100
-
-[`Task`](https://github.com/tektoncd/pipeline/blob/master/docs/tasks.md) - defines a series of ordered `Steps`, and each `Step` invokes a specific
101
-
build tool on a specific set of inputs and produces a specific set of outputs, which can be used as inputs in the next `Step`.
100
+
-[`Task`](https://github.com/tektoncd/pipeline/blob/main/docs/tasks.md) - defines a series of ordered `Steps`, and each `Step` invokes a specific
101
+
build tool on a specific set of inputs and produces a specific set of outputs, which can be used as inputs in the next `Step`.
102
102
103
-
-[`Pipeline`](https://github.com/tektoncd/pipeline/blob/master/docs/pipelines.md) - defines a series of ordered `Tasks`, and just like `Steps` in a
103
+
-[`Pipeline`](https://github.com/tektoncd/pipeline/blob/main/docs/pipelines.md) - defines a series of ordered `Tasks`, and just like `Steps` in a
104
104
`Task`, a `Task` in a `Pipeline` can use the output of a previously executed `Task` as its input.
105
105
106
-
-[`TaskRun`](https://github.com/tektoncd/pipeline/blob/master/docs/taskruns.md) - instantiates a specific `Task` to execute on a particular set of
106
+
-[`TaskRun`](https://github.com/tektoncd/pipeline/blob/main/docs/taskruns.md) - instantiates a specific `Task` to execute on a particular set of
107
107
inputs and produce a particular set of outputs. In other words, the `Task` tells Tekton what to do, and a `TaskRun` tells Tekton what to do it **on**,
108
108
as well as any additional details on how to exactly do it, such as build flags.
109
109
110
-
-[`PipelineRun`](https://github.com/tektoncd/pipeline/blob/master/docs/pipelineruns.md) - instantiates a specific `Pipeline` to execute on a particular
110
+
-[`PipelineRun`](https://github.com/tektoncd/pipeline/blob/main/docs/pipelineruns.md) - instantiates a specific `Pipeline` to execute on a particular
111
111
set of inputs and produce a particular set of outputs to particular destinations.
112
112
113
113
Each `Task` executes in its own Kubernetes Pod. Thus, by default, `Tasks` within a `Pipeline` do not share data. To share data among `Tasks`,
@@ -122,4 +122,4 @@ you must explicitly configure each `Task` to make its outputs available to the n
122
122
123
123
### I want to learn more!
124
124
125
-
To learn more about the Tekton entities described above and start using Tekton, see the [Tekton Pipelines Overview](https://github.com/tektoncd/pipeline/blob/master/docs/README.md).
125
+
To learn more about the Tekton entities described above and start using Tekton, see the [Tekton Pipelines Overview](https://github.com/tektoncd/pipeline/blob/main/docs/README.md).
0 commit comments