mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 21:46:22 +01:00
Match the casing used in the API enum [1], fixing a typo from52da949f96(OSDOCS-3789: Adds cluster capabilities section, 2022-07-18, #47915). [1]:d2198688dc/config/v1/types_cluster_version.go (L258-L264)
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// *post_installation_configuration/cluster-capabilities.adoc
|
|
|
|
[id="setting_baseline_capability_set_{context}"]
|
|
= Enabling the cluster capabilities by setting baseline capability set
|
|
|
|
As a cluster administrator, you can enable the capabilities by setting `baselineCapabilitySet`.
|
|
|
|
.Prerequisites
|
|
|
|
* You have installed the OpenShift CLI (`oc`).
|
|
|
|
.Procedure
|
|
|
|
* To set the `baselineCapabilitySet`, run the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc patch clusterversion version --type merge -p '{"spec":{"capabilities":{"baselineCapabilitySet":"vCurrent"}}}' <1>
|
|
----
|
|
+
|
|
<1> For `baselineCapabilitySet` you can specify `vCurrent`, `v4.11`, or `None`.
|
|
+
|
|
The following table describes the `baselineCapabilitySet` values.
|
|
+
|
|
.Cluster capabilities `baselineCapabilitySet` values description
|
|
[cols=".^4,.^6a",options="header"]
|
|
|===
|
|
|Value|Description
|
|
|
|
|`vCurrent`
|
|
|Specify when you want to automatically add new capabilities as they become recommended.
|
|
|
|
|`v4.11`
|
|
|Specify when you want the capabilities defined in {product-title} 4.11 and not automatically enable capabilities, which might be introduced in later versions.
|
|
|
|
|`None`
|
|
|Specify when the other sets are too large, and you do not need any capabilities or want to fine-tune via `additionalEnabledCapabilities`.
|
|
|
|
|===
|