Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 14. Enabling cluster capabilities
Cluster administrators can enable cluster capabilities that were disabled prior to installation.
Cluster administrators cannot disable a cluster capability after it is enabled.
14.1. Viewing the cluster capabilities Link kopierenLink in die Zwischenablage kopiert!
As a cluster administrator, you can view the capabilities by using the clusterversion
resource status.
Prerequisites
-
You have installed the OpenShift CLI (
oc
).
Procedure
To view the status of the cluster capabilities, run the following command:
oc get clusterversion version -o jsonpath='{.spec.capabilities}{"\n"}{.status.capabilities}{"\n"}'
$ oc get clusterversion version -o jsonpath='{.spec.capabilities}{"\n"}{.status.capabilities}{"\n"}'
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example output
{"additionalEnabledCapabilities":["openshift-samples"],"baselineCapabilitySet":"None"} {"enabledCapabilities":["openshift-samples"],"knownCapabilities":["CSISnapshot","Console","Insights","Storage","baremetal","marketplace","openshift-samples"]}
{"additionalEnabledCapabilities":["openshift-samples"],"baselineCapabilitySet":"None"} {"enabledCapabilities":["openshift-samples"],"knownCapabilities":["CSISnapshot","Console","Insights","Storage","baremetal","marketplace","openshift-samples"]}
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
14.2. Enabling the cluster capabilities by setting baseline capability set Link kopierenLink in die Zwischenablage kopiert!
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:oc patch clusterversion version --type merge -p '{"spec":{"capabilities":{"baselineCapabilitySet":"vCurrent"}}}'
$ oc patch clusterversion version --type merge -p '{"spec":{"capabilities":{"baselineCapabilitySet":"vCurrent"}}}'
1 Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- For
baselineCapabilitySet
you can specifyvCurrent
,v4.11
,v4.12
, orNone
.
The following table describes the baselineCapabilitySet
values.
Value | Description |
---|---|
| Specify this option when you want to automatically add new, default capabilities that are introduced in new releases. |
|
Specify this option when you want to enable the default capabilities for OpenShift Container Platform 4.11. By specifying |
|
Specify this option when you want to enable the default capabilities for OpenShift Container Platform 4.12. By specifying |
|
Specify when the other sets are too large, and you do not need any capabilities or want to fine-tune via |
14.3. Enabling the cluster capabilities by setting additional enabled capabilities Link kopierenLink in die Zwischenablage kopiert!
As a cluster administrator, you can enable the cluster capabilities by setting additionalEnabledCapabilities
.
Prerequisites
-
You have installed the OpenShift CLI (
oc
).
Procedure
View the additional enabled capabilities by running the following command:
oc get clusterversion version -o jsonpath='{.spec.capabilities.additionalEnabledCapabilities}{"\n"}'
$ oc get clusterversion version -o jsonpath='{.spec.capabilities.additionalEnabledCapabilities}{"\n"}'
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example output
["openshift-samples"]
["openshift-samples"]
Copy to Clipboard Copied! Toggle word wrap Toggle overflow To set the
additionalEnabledCapabilities
, run the following command:oc patch clusterversion/version --type merge -p '{"spec":{"capabilities":{"additionalEnabledCapabilities":["openshift-samples", "marketplace"]}}}'
$ oc patch clusterversion/version --type merge -p '{"spec":{"capabilities":{"additionalEnabledCapabilities":["openshift-samples", "marketplace"]}}}'
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
It is not possible to disable a capability which is already enabled in a cluster. The cluster version Operator (CVO) continues to reconcile the capability which is already enabled in the cluster.
If you try to disable a capability, then CVO shows the divergent spec:
oc get clusterversion version -o jsonpath='{.status.conditions[?(@.type=="ImplicitlyEnabledCapabilities")]}{"\n"}'
$ oc get clusterversion version -o jsonpath='{.status.conditions[?(@.type=="ImplicitlyEnabledCapabilities")]}{"\n"}'
Example output
{"lastTransitionTime":"2022-07-22T03:14:35Z","message":"The following capabilities could not be disabled: openshift-samples","reason":"CapabilitiesImplicitlyEnabled","status":"True","type":"ImplicitlyEnabledCapabilities"}
{"lastTransitionTime":"2022-07-22T03:14:35Z","message":"The following capabilities could not be disabled: openshift-samples","reason":"CapabilitiesImplicitlyEnabled","status":"True","type":"ImplicitlyEnabledCapabilities"}
During the cluster upgrades, it is possible that a given capability could be implicitly enabled. If a resource was already running on the cluster before the upgrade, then any capabilities that is part of the resource will be enabled. For example, during a cluster upgrade, a resource that is already running on the cluster has been changed to be part of the marketplace
capability by the system. Even if a cluster administrator does not explicitly enabled the marketplace
capability, it is implicitly enabled by the system.