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

feat: add alibabacloud mns as eventsource #2951

Closed
wants to merge 1 commit into from
Closed
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
120 changes: 120 additions & 0 deletions api/event-source.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

120 changes: 120 additions & 0 deletions api/event-source.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions api/jsonschema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1551,6 +1551,13 @@
"description": "Minio event sources",
"type": "object"
},
"mns": {
"additionalProperties": {
"$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.MNSEventSource"
},
"description": "MNS event sources",
"type": "object"
},
"mqtt": {
"additionalProperties": {
"$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.MQTTEventSource"
Expand Down Expand Up @@ -2171,6 +2178,38 @@
],
"type": "object"
},
"io.argoproj.eventsource.v1alpha1.MNSEventSource": {
"description": "MNSEventSource refers to event-source for AlibabaCloud MNS related events",
"properties": {
"accessKey": {
"$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
"description": "AccessKey refers K8s secret containing AlibabaCloud access key"
},
"endpoint": {
"description": "Endpoint configures connection to a specific AlibabaCloud MNS endpoint",
"type": "string"
},
"filter": {
"$ref": "#/definitions/io.argoproj.eventsource.v1alpha1.EventSourceFilter",
"description": "Filter"
},
"jsonBody": {
"type": "boolean"
},
"queue": {
"description": "Queue is AlibabaCloud MNS queue to listen to for messages",
"type": "string"
},
"secretKey": {
"$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
"description": "SecretKey refers K8s secret containing AlibabaCloud secret key"
}
},
"required": [
"queue"
],
"type": "object"
},
"io.argoproj.eventsource.v1alpha1.MQTTEventSource": {
"description": "MQTTEventSource refers to event-source for MQTT related events",
"properties": {
Expand Down
Loading
Loading