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
{{ message }}
This repository was archived by the owner on May 5, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/guides/actions.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ TriggerMesh Actions are based on [Tekton Pipeline](https://github.com/tektoncd/p
6
6
7
7
You can express a _Task_ in a manifest. For example, the following manifest represents a Task that will echo _Hello World_:
8
8
9
-
```
9
+
```yaml
10
10
apiVersion: tekton.dev/v1alpha1
11
11
kind: Task
12
12
metadata:
@@ -19,7 +19,7 @@ spec:
19
19
- echo
20
20
args:
21
21
- "hello world"
22
-
```
22
+
```
23
23
24
24
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.
25
25
@@ -29,8 +29,8 @@ The TM console provides an easy to use YAML window for deploying Tasks from the
29
29
Click on the _Create Task_ button and select _from YAML_, to create a new task.
30
30
31
31

32
-
33
-
32
+
33
+
34
34
You will be presented with the following view in which you can paste your Task manifest.
35
35
36
36

@@ -50,4 +50,4 @@ Clicking on the object name will lead you to the _Task Run Details_ here we can
50
50

51
51
52
52
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)
Copy file name to clipboardExpand all lines: docs/guides/cd.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,14 @@
2
2
3
3
4
4
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] .
6
6
7
7
8
8
## Register the repository
9
9
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.
11
11
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_
13
13
14
14

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

24
24
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.
26
26
27
27

28
28
@@ -32,7 +32,7 @@ The Triggermesh console provides an interface called [Repositories.](https://clo
32
32
33
33
## Viewing The Deployment
34
34
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.***
36
36
37
37
* Navigate to the _Tasks_ view in the **Actions** section and click on the _Task_ name.
38
38
@@ -61,4 +61,4 @@ The Triggermesh console provides an interface called [Repositories.](https://clo
61
61

62
62
63
63
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)
Copy file name to clipboardExpand all lines: docs/guides/secrets.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,17 @@
2
2
3
3
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.
4
4
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)
7
6
8
7

9
8
10
-
11
-
12
9
## Generic Secrets
13
10
14
11
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.
15
12
16
13

17
14
18
-
## AWS API keys
15
+
## AWS API keys
19
16
20
17
All the AWS event sources need access to some AWS API credentials to be able to establish a secure connection.
21
18
@@ -47,4 +44,4 @@ You can interact with your secrets using [`kubectl`](https://kubernetes.io/docs/
47
44
48
45
```
49
46
kubectl --kubeconfig=config.json -n <your_login_username> get secrets
0 commit comments