Skip to content

Commit

Permalink
correct Event Type AutoCreate flag name
Browse files Browse the repository at this point in the history
Signed-off-by: pingjiang <[email protected]>
  • Loading branch information
xiangpingjiang committed Sep 18, 2023
1 parent 1201e36 commit 34aa607
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/eventing/experimental-features/eventtype-auto-creation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EventType auto creation for Brokers

**Flag name**: `eventtype-auto-creation`
**Flag name**: `eventtype-auto-create`

**Stage**: Alpha, disabled by default

Expand All @@ -11,9 +11,9 @@

## Overview

With the `eventtype-auto-creation` feature, we have possibliy to _auto create_ EventTypes that are received and ingressed by the Knative Broker and Channel implementations.
With the `eventtype-auto-create` feature, we have possibliy to _auto create_ EventTypes that are received and ingressed by the Knative Broker and Channel implementations.

For making use of this _opt-in_ feature, we must turn it on in the `config-features`, by setting the `eventtype-auto-creation` flag to `enabled`:
For making use of this _opt-in_ feature, we must turn it on in the `config-features`, by setting the `eventtype-auto-create` flag to `enabled`:

```yaml
apiVersion: v1
Expand All @@ -22,7 +22,7 @@ metadata:
name: config-features
namespace: knative-eventing
data:
eventtype-auto-creation: "enabled"
eventtype-auto-create: "enabled"
...
```

Expand Down Expand Up @@ -102,7 +102,7 @@ container in a cluster.

### Event Discovery

After the two produced events, we should be able to have discoverable events in the system, based on the `eventtype-auto-creation` feature:
After the two produced events, we should be able to have discoverable events in the system, based on the `eventtype-auto-create` feature:

```
k get eventtypes.eventing.knative.dev -A
Expand Down

0 comments on commit 34aa607

Please sign in to comment.