Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renaming branches: handling triggers and CLI repository #240

Merged
merged 2 commits into from
Mar 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/en/docs/Overview/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ Tekton consists of the following components:
defines a set of Kubernetes [Custom Resources](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)
that act as building blocks from which you can assemble CI/CD pipelines.

- **[Tekton Triggers](https://github.com/tektoncd/triggers/blob/master/README.md)** allows you to instantiate pipelines based on events.
- **[Tekton Triggers](https://github.com/tektoncd/triggers/blob/main/README.md)** allows you to instantiate pipelines based on events.
For example, you can trigger the instantiation and execution of a pipeline every time a PR is merged against a GitHub repository. You
can also build a user interface that launches specific Tekton triggers.
can also build a user interface that launches specific Tekton triggers.

- **[Tekton CLI](https://github.com/tektoncd/cli/blob/master/README.md)** provides a command-line interface called `tkn`, built on top
of the Kubernetes CLI, that allows you to interact with Tekton.
- **[Tekton CLI](https://github.com/tektoncd/cli/blob/main/README.md)** provides a command-line interface called `tkn`, built on top
of the Kubernetes CLI, that allows you to interact with Tekton.

- **[Tekton Dashboard](https://github.com/tektoncd/dashboard/blob/main/README.md)** is a Web-based graphical interface for Tekton
Pipelines that displays information about the execution of your pipelines. It is currently a work-in-progress.
Expand All @@ -75,7 +75,7 @@ To install Tekton, you need a Kubernetes cluster running a
[version of Kubernetes specified for the current Tekton release](https://github.com/tektoncd/pipeline/#want-to-start-using-pipelines).
Once installed, you can interact with Tekton using one of the following:

- **[The tkn CLI](https://github.com/tektoncd/cli/blob/master/README.md)**, also known as the Tekton CLI, is the preferred command-line method
- **[The tkn CLI](https://github.com/tektoncd/cli/blob/main/README.md)**, also known as the Tekton CLI, is the preferred command-line method
for interacting with Tekton. `tkn` provides a quick and streamlined experience, including high-level commands and color coding. To use it,
you only need to be familiar with Tekton.
- **[The kubectl CLI](https://kubernetes.io/docs/reference/kubectl/overview/)**, also known as the Kubernetes CLI, provides substantially more
Expand Down
4 changes: 2 additions & 2 deletions sync/config/cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ tags:
docs:
index: README.md
include: ['*.md']
- name: master
- name: main
# The name to display on tekton.dev.
# helper.py will use this value in the version switcher and other places.
displayName: master
displayName: main
# Dict of folders to sync
folders:
docs:
Expand Down
4 changes: 2 additions & 2 deletions sync/config/triggers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ tags:
- '*.md'
- create-ingress.yaml
- create-webhook.yaml
- name: master
- name: main
# The name to display on tekton.dev.
# helper.py will use this value in the version switcher and other places.
displayName: master
displayName: main
# Dict of folders to sync
folders:
docs:
Expand Down