Skip to content

Commit

Permalink
fix: Inconsistent OIDC auth feature flag name (#7422)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeenuyD authored Nov 2, 2023
1 parent 650d965 commit e85a09d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/core/configmaps/features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ data:
# For more details: https://github.com/knative/eventing/issues/6909
eventtype-auto-create: "disabled"

# ALPHA feature: The authentication.oidc flag allows you to use OIDC authentication for Eventing.
# ALPHA feature: The aauthentication-oidc flag allows you to use OIDC authentication for Eventing.
# For more details: https://github.com/knative/eventing/issues/7174
authentication.oidc: "disabled"
authentication-oidc: "disabled"
2 changes: 1 addition & 1 deletion pkg/apis/feature/flag_names.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ const (
NewTriggerFilters = "new-trigger-filters"
TransportEncryption = "transport-encryption"
EvenTypeAutoCreate = "eventtype-auto-create"
OIDCAuthentication = "authentication.oidc"
OIDCAuthentication = "authentication-oidc"
)
2 changes: 1 addition & 1 deletion test/auth/config/features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ metadata:
name: config-features
namespace: knative-eventing
data:
authentication.oidc: "enabled"
authentication-oidc: "enabled"

0 comments on commit e85a09d

Please sign in to comment.