Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.78 KB

roadmap.md

File metadata and controls

51 lines (38 loc) · 1.78 KB

Eventing Roadmap

At the end of each milestone, there should be a new or updated demo linked from the README.

0.1 CloudEvents Demo

  1. Ability to register an event sources and specify which events may be generated from that source Proposal
  2. kubectl command to set up a trigger where a specific event will cause a specific action
  3. Example source generating an event
  4. Example action
  5. Events conform to CloudEvents 0.1 specification

0.2 Friendly Repo

  1. Easy installation issue#51
  2. We have clear guidelines for how we use Prow
  3. All the contributing info is tested and someone new to the repo has made a PR by following the directions

0.3 Functions

  1. An event can trigger Knative function issue#52
  2. A local event can trigger a Google Cloud Function
  3. A Google source can trigger an action local within the Knative cluster. Likely this will use some scaffolding on the Google side to validate the interaction between systems, such as deploying a Cloud Function that forwards the Google Event to the Knative cluster.

0.4 Event Persistence

  1. Events can be stored in a buffer / queue
  2. Failed event handling can be retried
  3. An Event Source can be added to a cluster without recompile
  4. There is a well-defined interface that allows the use of popular event brokers for persistence, such as Kafka and Rabbit Mq

0.5 Pipelines

  1. Pipeline the output of one action into the input of another
  2. Pipelines can be a series of Functions

0.6 Streams

  1. an action may accept a stream interface to process many events at once
  2. Events are delivered in order