Skip to content
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
31 changes: 31 additions & 0 deletions admin_guide/disabling_features.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
+
Expand Down Expand Up @@ -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:
+
Expand Down