From 240c50fe2b97be55637b85ddd75c63911f92e661 Mon Sep 17 00:00:00 2001 From: slinkydeveloper Date: Thu, 3 Jun 2021 11:20:07 +0200 Subject: [PATCH] Remove double quotes on enabled and disabled Signed-off-by: Francesco Guardiani --- docs/eventing/experimental-features.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/eventing/experimental-features.md b/docs/eventing/experimental-features.md index 9d42911d516..96170cb1f88 100644 --- a/docs/eventing/experimental-features.md +++ b/docs/eventing/experimental-features.md @@ -16,7 +16,7 @@ You must have a Knative cluster running with the Eventing component installed. [ ## Experimental features configuration When installing Eventing, the `config-features` ConfigMap is added to your cluster in the `knative-eventing` namespace. -In order to enable a feature, you just need to add it to the config map and set its value to `"enabled"`. +In order to enable a feature, you just need to add it to the config map and set its value to `enabled`. For example, to enable `new-cool-feature`: ```yaml @@ -30,10 +30,10 @@ metadata: knative.dev/config-propagation: original knative.dev/config-category: eventing data: - new-cool-feature: "enabled" + new-cool-feature: enabled ``` -In order to disable it, you can either remove the flag or set it to `"disabled"`: +In order to disable it, you can either remove the flag or set it to `disabled`: ```yaml apiVersion: v1 @@ -46,7 +46,7 @@ metadata: knative.dev/config-propagation: original knative.dev/config-category: eventing data: - new-cool-feature: "disabled" + new-cool-feature: disabled ``` ## Features list