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

Update Event Docs #6334

Merged
merged 1 commit into from
Mar 12, 2025
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
2 changes: 1 addition & 1 deletion docs/deployment/configuration/cloud_event.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To turn on, add the following to your FlyteAdmin:
cloudEvents:
enable: true
gcp:
region: us-east-2
projectId: my-project-id
eventsPublisher:
eventTypes:
- all # or node, task, workflow
Expand Down
44 changes: 32 additions & 12 deletions docs/deployment/configuration/eventing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,39 @@ Configuration

To turn on, add the following to your FlyteAdmin:

.. code:: yaml

external_events.yaml: |
externalEvents:
enable: true
aws:
region: us-east-2
eventsPublisher:
eventTypes:
- all
topicName: arn:aws:sns:us-east-2:123456:123-my-topic
type: aws

.. tabs::

.. tab:: AWS SNS

.. code:: yaml

cloud_events.yaml: |
cloudEvents:
enable: true
aws:
region: us-east-2
eventsPublisher:
eventTypes:
- all # or node, task, workflow
topicName: arn:aws:sns:us-east-2:123456:123-my-topic
type: aws

.. tab:: GCP Pub/Sub

.. code:: yaml

cloud_events.yaml: |
cloudEvents:
enable: true
gcp:
projectId: my-project-id
eventsPublisher:
eventTypes:
- all # or node, task, workflow
topicName: my-topic
type: gcp

Helm
====

Expand Down
Loading