diff --git a/config/core/configmaps/features.yaml b/config/core/configmaps/features.yaml index 8ac021fdb10..93e40fa2a90 100644 --- a/config/core/configmaps/features.yaml +++ b/config/core/configmaps/features.yaml @@ -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" diff --git a/pkg/apis/feature/flag_names.go b/pkg/apis/feature/flag_names.go index 92ac9b88ed6..189c0d2b777 100644 --- a/pkg/apis/feature/flag_names.go +++ b/pkg/apis/feature/flag_names.go @@ -24,5 +24,5 @@ const ( NewTriggerFilters = "new-trigger-filters" TransportEncryption = "transport-encryption" EvenTypeAutoCreate = "eventtype-auto-create" - OIDCAuthentication = "authentication.oidc" + OIDCAuthentication = "authentication-oidc" ) diff --git a/test/auth/config/features.yaml b/test/auth/config/features.yaml index 46f013eaa3f..b93aa837079 100644 --- a/test/auth/config/features.yaml +++ b/test/auth/config/features.yaml @@ -18,4 +18,4 @@ metadata: name: config-features namespace: knative-eventing data: - authentication.oidc: "enabled" + authentication-oidc: "enabled"