Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct Event Type AutoCreate flag name #5686

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -13,7 +13,7 @@

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.

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
Loading