Implementing events and event-driven pipelines using sequences with Knative Eventing
Knative provides Eventing components to implement event-driven architectures. We are going to explore a simple Eventing pipeline with Knative using the lightweight in-memory channel component to implement two simple events that call a service showing a message. In the second part, we are going to implement a simple sequence that calls two servers sequentially, one after the other, showing custom messages. So, let’s get started with the first part to implement simple events.
Installing Knative Eventing
Before creating our events, we need to install all the Knative components. We are going to use the in-memory channel to manage our events, which is the simplest and most lightweight channel implemented in Knative, and Sugar Controller to provision Knative Eventing resources in namespaces using labels. To get started with installing Knative Eventing, follow the next steps:
- Install...