From 021b91a2e2e6faf2871975d87b71396f958f38ca Mon Sep 17 00:00:00 2001 From: Michael Burke Date: Wed, 3 Apr 2019 16:50:00 -0400 Subject: [PATCH] rotate-server-certificates gets set to false when set separately --- admin_guide/disabling_features.adoc | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/admin_guide/disabling_features.adoc b/admin_guide/disabling_features.adoc index 931f33ba379c..3f845379168e 100644 --- a/admin_guide/disabling_features.adoc +++ b/admin_guide/disabling_features.adoc @@ -59,6 +59,15 @@ kubernetesMasterConfig: + * `false` disables the specified feature +Specify multiple feature gates in one, comma-delimited line: + +[source,yaml] +---- +kubeletArguments: + feature-gates: + - RotateKubeletClientCertificate=true,RotateKubeletServerCertificate=true,ExpandPersistentVolumes=true,HugePages=false +---- + [[admin-guide-disable-feature-cluster]] == Disabling Features for a Cluster @@ -78,6 +87,19 @@ kubernetesMasterConfig: feature-gates: - HugePages=false ---- ++ +Specify multiple feature gates in one, comma-delimited line: ++ +[source,yaml] +---- +kubernetesMasterConfig: + apiServerArguments: + feature-gates: + - RotateKubeletClientCertificate=false,RotateKubeletServerCertificate=false,ExpandPersistentVolumes=true,HugePages=false + controllerArguments: + feature-gates: + - RotateKubeletClientCertificate=false,RotateKubeletServerCertificate=false,ExpandPersistentVolumes=true,HugePages=false +---- . Restart the {product-title} master service to apply the changes. + @@ -109,6 +131,15 @@ kubeletArguments: feature-gates: - HugePages=false ---- ++ +Specify multiple feature gates in one, comma-delimited line: ++ +[source,yaml] +---- +kubeletArguments: + feature-gates: + - RotateKubeletClientCertificate=false,RotateKubeletServerCertificate=false,ExpandPersistentVolumes=true,HugePages=false +---- . Restart the {product-title} service for the changes to take effect: +