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

Commit 88347af

Browse files
committed
Bump TriggerMesh release to v1.12.0
1 parent 7926e10 commit 88347af

19 files changed

+793
-545
lines changed

LICENSES/vendor/triggermesh-event-sources-bundle/cmd/triggermesh-controller/LICENSE renamed to LICENSES/vendor/github.com/triggermesh/triggermesh-event-sources-bundle/cmd/triggermesh-controller/LICENSE

File renamed without changes.

cmd/triggermesh-controller/main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
"github.com/triggermesh/triggermesh/pkg/sources/reconciler/azureiothubsource"
2525
"github.com/triggermesh/triggermesh/pkg/sources/reconciler/azurequeuestoragesource"
2626
"github.com/triggermesh/triggermesh/pkg/sources/reconciler/azureservicebusqueuesource"
27+
"github.com/triggermesh/triggermesh/pkg/sources/reconciler/azureservicebustopicsource"
2728

2829
// GCP Event Sources
2930
"github.com/triggermesh/triggermesh/pkg/sources/reconciler/googlecloudauditlogssource"
@@ -57,9 +58,7 @@ func main() {
5758
azureiothubsource.NewController,
5859
azurequeuestoragesource.NewController,
5960
azureservicebusqueuesource.NewController,
60-
/* Next TriggerMesh release
6161
azureservicebustopicsource.NewController,
62-
*/
6362

6463
// GCP Event Sources
6564
googlecloudauditlogssource.NewController,

config/300-awscloudwatchlogssource.yaml

Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -62,55 +62,59 @@ spec:
6262
Expressed as a duration string, which format is documented at https://pkg.go.dev/time#ParseDuration.
6363
Defaults to 5m
6464
type: string
65-
credentials:
66-
description: Credentials to interact with the Amazon CloudWatch Logs API. For more information about AWS
67-
security credentials, please refer to the AWS General Reference at
68-
https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html
65+
auth:
66+
description: Authentication method to interact with the Amazon CloudWatch Logs API.
6967
type: object
7068
properties:
71-
accessKeyID:
72-
description: Access key ID.
69+
credentials:
70+
description: Security credentials authentication. For more information about AWS security
71+
credentials, please refer to the AWS General Reference at
72+
https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html.
7373
type: object
7474
properties:
75-
value:
76-
description: Literal value of the access key ID.
77-
type: string
78-
valueFromSecret:
79-
description: A reference to a Kubernetes Secret object containing the access key ID.
75+
accessKeyID:
76+
description: Access key ID.
8077
type: object
8178
properties:
82-
name:
83-
type: string
84-
key:
79+
value:
80+
description: Literal value of the access key ID.
8581
type: string
86-
required:
87-
- name
88-
- key
89-
oneOf:
90-
- required: [value]
91-
- required: [valueFromSecret]
92-
secretAccessKey:
93-
description: Secret access key.
94-
type: object
95-
properties:
96-
value:
97-
description: Literal value of the secret access key.
98-
type: string
99-
format: password
100-
valueFromSecret:
101-
description: A reference to a Kubernetes Secret object containing the secret access key.
82+
valueFromSecret:
83+
description: A reference to a Kubernetes Secret object containing the access key ID.
84+
type: object
85+
properties:
86+
name:
87+
type: string
88+
key:
89+
type: string
90+
required:
91+
- name
92+
- key
93+
oneOf:
94+
- required: [value]
95+
- required: [valueFromSecret]
96+
secretAccessKey:
97+
description: Secret access key.
10298
type: object
10399
properties:
104-
name:
105-
type: string
106-
key:
100+
value:
101+
description: Literal value of the secret access key.
107102
type: string
108-
required:
109-
- name
110-
- key
111-
oneOf:
112-
- required: [value]
113-
- required: [valueFromSecret]
103+
format: password
104+
valueFromSecret:
105+
description: A reference to a Kubernetes Secret object containing the secret access key.
106+
type: object
107+
properties:
108+
name:
109+
type: string
110+
key:
111+
type: string
112+
required:
113+
- name
114+
- key
115+
oneOf:
116+
- required: [value]
117+
- required: [valueFromSecret]
114118
sink:
115119
description: The destination of events generated from Amazon CloudWatch Logs.
116120
type: object

config/300-awscloudwatchsource.yaml

Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -118,55 +118,59 @@ spec:
118118
oneOf:
119119
- required: [expression]
120120
- required: [metric]
121-
credentials:
122-
description: Credentials to interact with the Amazon CloudWatch API. For more information about AWS
123-
security credentials, please refer to the AWS General Reference at
124-
https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html
121+
auth:
122+
description: Authentication method to interact with the Amazon CloudWatch API.
125123
type: object
126124
properties:
127-
accessKeyID:
128-
description: Access key ID.
125+
credentials:
126+
description: Security credentials authentication. For more information about AWS security
127+
credentials, please refer to the AWS General Reference at
128+
https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html.
129129
type: object
130130
properties:
131-
value:
132-
description: Literal value of the access key ID.
133-
type: string
134-
valueFromSecret:
135-
description: A reference to a Kubernetes Secret object containing the access key ID.
131+
accessKeyID:
132+
description: Access key ID.
136133
type: object
137134
properties:
138-
name:
139-
type: string
140-
key:
135+
value:
136+
description: Literal value of the access key ID.
141137
type: string
142-
required:
143-
- name
144-
- key
145-
oneOf:
146-
- required: [value]
147-
- required: [valueFromSecret]
148-
secretAccessKey:
149-
description: Secret access key.
150-
type: object
151-
properties:
152-
value:
153-
description: Literal value of the secret access key.
154-
type: string
155-
format: password
156-
valueFromSecret:
157-
description: A reference to a Kubernetes Secret object containing the secret access key.
138+
valueFromSecret:
139+
description: A reference to a Kubernetes Secret object containing the access key ID.
140+
type: object
141+
properties:
142+
name:
143+
type: string
144+
key:
145+
type: string
146+
required:
147+
- name
148+
- key
149+
oneOf:
150+
- required: [value]
151+
- required: [valueFromSecret]
152+
secretAccessKey:
153+
description: Secret access key.
158154
type: object
159155
properties:
160-
name:
161-
type: string
162-
key:
156+
value:
157+
description: Literal value of the secret access key.
163158
type: string
164-
required:
165-
- name
166-
- key
167-
oneOf:
168-
- required: [value]
169-
- required: [valueFromSecret]
159+
format: password
160+
valueFromSecret:
161+
description: A reference to a Kubernetes Secret object containing the secret access key.
162+
type: object
163+
properties:
164+
name:
165+
type: string
166+
key:
167+
type: string
168+
required:
169+
- name
170+
- key
171+
oneOf:
172+
- required: [value]
173+
- required: [valueFromSecret]
170174
sink:
171175
description: The destination of events generated from Amazon CloudWatch metrics.
172176
type: object

config/300-awscodecommitsource.yaml

Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -68,55 +68,59 @@ spec:
6868
items:
6969
type: string
7070
enum: [push, pull_request]
71-
credentials:
72-
description: Credentials to interact with the Amazon CodeCommit API. For more information about AWS
73-
security credentials, please refer to the AWS General Reference at
74-
https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html
71+
auth:
72+
description: Authentication method to interact with the Amazon CodeCommit API.
7573
type: object
7674
properties:
77-
accessKeyID:
78-
description: Access key ID.
75+
credentials:
76+
description: Security credentials authentication. For more information about AWS security
77+
credentials, please refer to the AWS General Reference at
78+
https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html.
7979
type: object
8080
properties:
81-
value:
82-
description: Literal value of the access key ID.
83-
type: string
84-
valueFromSecret:
85-
description: A reference to a Kubernetes Secret object containing the access key ID.
81+
accessKeyID:
82+
description: Access key ID.
8683
type: object
8784
properties:
88-
name:
89-
type: string
90-
key:
85+
value:
86+
description: Literal value of the access key ID.
9187
type: string
92-
required:
93-
- name
94-
- key
95-
oneOf:
96-
- required: [value]
97-
- required: [valueFromSecret]
98-
secretAccessKey:
99-
description: Secret access key.
100-
type: object
101-
properties:
102-
value:
103-
description: Literal value of the secret access key.
104-
type: string
105-
format: password
106-
valueFromSecret:
107-
description: A reference to a Kubernetes Secret object containing the secret access key.
88+
valueFromSecret:
89+
description: A reference to a Kubernetes Secret object containing the access key ID.
90+
type: object
91+
properties:
92+
name:
93+
type: string
94+
key:
95+
type: string
96+
required:
97+
- name
98+
- key
99+
oneOf:
100+
- required: [value]
101+
- required: [valueFromSecret]
102+
secretAccessKey:
103+
description: Secret access key.
108104
type: object
109105
properties:
110-
name:
111-
type: string
112-
key:
106+
value:
107+
description: Literal value of the secret access key.
113108
type: string
114-
required:
115-
- name
116-
- key
117-
oneOf:
118-
- required: [value]
119-
- required: [valueFromSecret]
109+
format: password
110+
valueFromSecret:
111+
description: A reference to a Kubernetes Secret object containing the secret access key.
112+
type: object
113+
properties:
114+
name:
115+
type: string
116+
key:
117+
type: string
118+
required:
119+
- name
120+
- key
121+
oneOf:
122+
- required: [value]
123+
- required: [valueFromSecret]
120124
sink:
121125
description: The destination of events sourced from Amazon CodeCommit.
122126
type: object

0 commit comments

Comments
 (0)