You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ts...@apache.org on 2022/08/22 03:29:51 UTC

[camel-k-examples] 06/10: improve error-handler example readme

This is an automated email from the ASF dual-hosted git repository.

tsato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-examples.git

commit 08acb506e67c06306942e14cb0a631e4ee8d143a
Author: Kuthumi Pepple <ku...@gmail.com>
AuthorDate: Thu Aug 18 12:27:54 2022 +0100

    improve error-handler example readme
---
 generic-examples/kamelets/error-handler/readme.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/generic-examples/kamelets/error-handler/readme.md b/generic-examples/kamelets/error-handler/readme.md
index 74322a9..e80ccdb 100644
--- a/generic-examples/kamelets/error-handler/readme.md
+++ b/generic-examples/kamelets/error-handler/readme.md
@@ -1,6 +1,9 @@
 # Kamelets Binding Error Handler example
 This example shows how to create a simple _source_ `Kamelet` which periodically sends events (and certain failures). The events are consumed by a log _sink_ in a `KameletBinding`. With the support of the `ErrorHandler`, we will redirect all errors to a `Sink` _error-handler_ `Kamelet` that first stores the events in a `Kafka` topic and then provide a nice log notifying us about the error that occurred.
 
+## Additional Requirements for running this example
+- A Kafka broker containing a Kafka Topic, and a Service Account with access to the topic. In this example, we shall name the Topic `my-first-test`.
+
 ## Incremental ID Source Kamelet
 First of all, you must install the _incremental-id-source_ Kamelet defined in `incremental-id-source.kamelet.yaml` file. This source will emit events every second with an autoincrement counter that will be forced to fail when the number 0 is present in the data. With this trick, we will simulate possible event faults.
 ```