Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit ea99773

Browse files
author
Sameer Naik
authored
Merge pull request #40 from triggermesh/fix-typos
fix typos in docs
2 parents 2f9947f + b389f78 commit ea99773

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

docs/guides/actions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TriggerMesh Actions are based on [Tekton Pipeline](https://github.com/tektoncd/p
66

77
You can express a _Task_ in a manifest. For example, the following manifest represents a Task that will echo _Hello World_:
88

9-
```
9+
```yaml
1010
apiVersion: tekton.dev/v1alpha1
1111
kind: Task
1212
metadata:
@@ -19,7 +19,7 @@ spec:
1919
- echo
2020
args:
2121
- "hello world"
22-
```
22+
```
2323
2424
The TM console provides an easy to use YAML window for deploying Tasks from the browser. This is accessed by selecting _Tasks_ from the Navigation menu.
2525
@@ -29,8 +29,8 @@ The TM console provides an easy to use YAML window for deploying Tasks from the
2929
Click on the _Create Task_ button and select _from YAML_, to create a new task.
3030
3131
![](../images/tmDashCreateTask.png)
32-
33-
32+
33+
3434
You will be presented with the following view in which you can paste your Task manifest.
3535
3636
![](../images/tmTaskYaml.png)
@@ -50,4 +50,4 @@ Clicking on the object name will lead you to the _Task Run Details_ here we can
5050
![](../images/taskrunlogs.png)
5151

5252

53-
### CLI lovers can use use [`kubectl`](https://kubernetes.io/docs/reference/kubectl/overview/) and [`tm`](https://github.com/triggermesh/tm) to [create Tasks from the CLI.](https://github.com/triggermesh/tm#deployment-pipelines)
53+
### CLI lovers can use use [`kubectl`](https://kubernetes.io/docs/reference/kubectl/overview/) and [`tm`](https://github.com/triggermesh/tm) to [create Tasks from the CLI.](https://github.com/triggermesh/tm#deployment-pipelines)

docs/guides/cd.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33

44

5-
The Triggermesh console provides an interface called [Repositories.](https://cloud.triggermesh.io/function-triggers) Here the user is able to select a codebase, from a linked repository provider, to be continuously deployed. This codebase **must** contain a deployment manifest[^1] .
5+
The Triggermesh console provides an interface called [Repositories.](https://cloud.triggermesh.io/function-triggers) Here the user is able to select a codebase, from a linked repository provider, to be continuously deployed. This codebase **must** contain a deployment manifest[^1] .
66

77

88
## Register the repository
99

10-
###### The following example uses this [sample repository.](https://github.com/sebgoa/tmserverless) To follow along begin by forking the example to your repository provider.
10+
###### The following example uses this [sample repository.](https://github.com/sebgoa/tmserverless) To follow along begin by forking the example to your repository provider.
1111

12-
1. Select the _Repositories_ section from the Navigation menu and then _CREATE NEW_
12+
1. Select the _Repositories_ section from the Navigation menu and then _CREATE NEW_
1313

1414
![](../images/tmRepoView.png)
1515

@@ -22,7 +22,7 @@ The Triggermesh console provides an interface called [Repositories.](https://clo
2222

2323
![](../images/repowiz2.png)
2424

25-
4. Here you can specify the location of the `serverless.yaml` manifest as well as select specific _Branch_ and _Tag_ name's from the repository.
25+
4. Here you can specify the location of the `serverless.yaml` manifest as well as select specific _Branch_ and _Tag_ name's from the repository.
2626

2727
![](../images/repowiz3.png)
2828

@@ -32,7 +32,7 @@ The Triggermesh console provides an interface called [Repositories.](https://clo
3232

3333
## Viewing The Deployment
3434

35-
***After every sucessful registration of a new repository a _Task_ will be created for it.***
35+
***After every successful registration of a new repository a _Task_ will be created for it.***
3636

3737
* Navigate to the _Tasks_ view in the **Actions** section and click on the _Task_ name.
3838

@@ -61,4 +61,4 @@ The Triggermesh console provides an interface called [Repositories.](https://clo
6161
![](../images/serviceview.png)
6262

6363

64-
[^1]: A sample manifest can be found here -> https://github.com/sebgoa/transform/blob/master/serverless.yaml
64+
[^1]: A sample manifest can be found here -> [https://github.com/sebgoa/transform/blob/master/serverless.yaml](https://github.com/sebgoa/transform/blob/master/serverless.yaml)

docs/guides/gettingstarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ If you know the Knative API already you can choose to paste the Service YAML man
3838

3939
For example, given this manifest:
4040

41-
```
42-
apiVersion: serving.knative.dev/v1alpha1
41+
```yaml
42+
apiVersion: serving.knative.dev/v1
4343
kind: Service
4444
metadata:
4545
name: hello

docs/guides/secrets.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22

33
The TriggerMesh console provides a central location to view and store sensitive information called `Secrets.` The secrets created here can then be used by any service deployed via the Triggermesh platform.
44

5-
In the top right, after selecting the `Secrets` section from the sidebar, you will se a button labled `+ ADD SECRET.` Selecting the button here will give you a choice to create various secrets (e.g AWS, GitHub, GitLab, GCP)
6-
5+
In the top right, after selecting the `Secrets` section from the sidebar, you will see a button labeled `+ ADD SECRET.` Selecting the button here will give you a choice to create various secrets (e.g AWS, GitHub, GitLab, GCP)
76

87
![](../images/addsecretview.png)
98

10-
11-
129
## Generic Secrets
1310

1411
If you need a generic secret you can also create it. The wizard will walk you through adding as many keys and values as you need.
1512

1613
![](../images/genericsecret.png)
1714

18-
## AWS API keys
15+
## AWS API keys
1916

2017
All the AWS event sources need access to some AWS API credentials to be able to establish a secure connection.
2118

@@ -47,4 +44,4 @@ You can interact with your secrets using [`kubectl`](https://kubernetes.io/docs/
4744

4845
```
4946
kubectl --kubeconfig=config.json -n <your_login_username> get secrets
50-
```
47+
```

0 commit comments

Comments
 (0)