Skip to content

Commit 8a32ec4

Browse files
vdemeestertekton-robot
authored andcommitted
Renaming branches: handling pipeline repository
Changing links to any reference to tektoncd/pipeline. Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
1 parent 6767fa6 commit 8a32ec4

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

content/en/docs/Getting Started/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline
4646
```
4747

4848
Replace `YOUR-VERSION` with the release you prefer. [You can find the full list
49-
of official Tekton releases on GitHub](https://github.com/tektoncd/pipeline/releases).
49+
of official Tekton releases on GitHub](https://github.com/tektoncd/pipeline/releases).
5050

5151
Additionally, Tekton Pipelines pushes nightly releases every night to
5252
`gcr.io/tekton-nightly`. If you are feeling adventurous and would like to
53-
experiment with the most recent, unreleased code, see [Tekton Development Guide](https://github.com/tektoncd/pipeline/blob/master/DEVELOPMENT.md).
53+
experiment with the most recent, unreleased code, see [Tekton Development Guide](https://github.com/tektoncd/pipeline/blob/main/DEVELOPMENT.md).
5454
{{% /alert %}}
5555

5656
It may take a few moments before the installation completes. You can check

content/en/docs/Overview/_index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Tekton provides the following benefits to builders and users of CI/CD systems:
4646

4747
Tekton consists of the following components:
4848

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
5050
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.
5252

5353
- **[Tekton Triggers](https://github.com/tektoncd/triggers/blob/main/README.md)** allows you to instantiate pipelines based on events.
5454
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
9797

9898
Tekton introduces the concept of `Tasks`, which specify the workloads you want to run:
9999

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`.
102102

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
104104
`Task`, a `Task` in a `Pipeline` can use the output of a previously executed `Task` as its input.
105105

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
107107
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**,
108108
as well as any additional details on how to exactly do it, such as build flags.
109109

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
111111
set of inputs and produce a particular set of outputs to particular destinations.
112112

113113
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
122122

123123
### I want to learn more!
124124

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).

sync/config/pipelines.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ tags:
135135
- deprecations.md
136136
- install.md
137137
- tutorial.md
138-
- name: master
138+
- name: main
139139
# The name to display on tekton.dev.
140140
# sync.py will use this value in the version switcher and other places.
141-
displayName: master
141+
displayName: main
142142
# Dict of folders to sync
143143
folders:
144144
docs:

tutorials/katacoda/dashboard/step1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Now, let's begin!
1010

1111
## Install the Tekton Dashboard Prerequisites
1212

13-
- [Tekton Pipelines](https://github.com/tektoncd/pipeline/blob/master/docs/install.md)
13+
- [Tekton Pipelines](https://github.com/tektoncd/pipeline/blob/main/docs/install.md)
1414
`kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.20.0/release.yaml`{{execute}}
1515

1616
Verify the pods are running:

tutorials/katacoda/playground/step1.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Please wait while your Tekton playground is starting, this may take a few minute
55
Once it is ready you can check the installed versions:
66
`tkn version`{{execute}}
77

8-
Try out some of the [examples](https://github.com/tektoncd/pipeline/tree/master/examples) from the Tekton Pipeline repo.
8+
Try out some of the [examples](https://github.com/tektoncd/pipeline/tree/main/examples) from the Tekton Pipeline repo.
99

1010
For example:
11-
`kubectl apply -f https://raw.githubusercontent.com/tektoncd/pipeline/master/examples/v1beta1/pipelineruns/output-pipelinerun.yaml`{{execute}}
11+
`kubectl apply -f https://raw.githubusercontent.com/tektoncd/pipeline/main/examples/v1beta1/pipelineruns/output-pipelinerun.yaml`{{execute}}
1212

1313
You can track the progress of the `PipelineRuns` using:
1414

0 commit comments

Comments
 (0)