Aligning the Eventing message w/ the README from its repo (#5635)

Signed-off-by: Matthias Wessendorf <mwessend@redhat.com>
This commit is contained in:
Matthias Wessendorf 2023-07-21 14:55:13 +02:00 committed by GitHub
parent 4c36780696
commit 3e2f9567c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -10,6 +10,6 @@ Knative is a platform-agnostic solution for running [serverless](https://en.wiki
--8<-- "about-serving.md"
## Knative Eventing
## Knative Eventing - The Event-driven application platform for Kubernetes
--8<-- "about-eventing.md"

View File

@ -1,4 +1,4 @@
# Knative Eventing
# Knative Eventing - The Event-driven application platform for Kubernetes
--8<-- "about-eventing.md"

View File

@ -2,7 +2,9 @@
- /docs/eventing/README.md
- /docs/concepts/README.md
-->
Knative Eventing is a collection of APIs that enable you to use an [event-driven architecture](https://en.wikipedia.org/wiki/Event-driven_architecture){target=_blank} with your applications. You can use these APIs to create components that route events from event producers to event consumers, known as sinks, that receive events. Sinks can also be configured to respond to HTTP requests by sending a response event.
Knative Eventing is a collection of APIs that enable you to use an [event-driven architecture](https://en.wikipedia.org/wiki/Event-driven_architecture){target=_blank} with your applications. You can use these APIs to create components that route events from event producers (known as sources) to event consumers (known as sinks) that receive events. Sinks can also be configured to respond to HTTP requests by sending a response event.
Knative Eventing is a standalone platform that provides support for various types of workloads, including standard Kubernetes Services and Knative Serving Services.
Knative Eventing uses standard HTTP POST requests to send and receive events between event producers and sinks. These events conform to the [CloudEvents specifications](https://cloudevents.io/){target=_blank}, which enables creating, parsing, sending, and receiving events in any programming language.