This documentation is for a release that is no longer maintained
See documentation for the latest supported version 3 or the latest supported version 4.Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 2. Managing your cluster resources
You can apply global configuration options in OpenShift Container Platform. Operators apply these configuration settings across the cluster.
2.1. Interacting with your cluster resources
				You can interact with cluster resources by using the OpenShift CLI (oc) tool in OpenShift Container Platform. The cluster resources that you see after running the oc api-resources command can be edited.
			
Prerequisites
- 
						You have access to the cluster as a user with the cluster-adminrole.
- 
						You have access to the web console or you have installed the ocCLI tool.
Procedure
- To see which configuration Operators have been applied, run the following command: - oc api-resources -o name | grep config.openshift.io - $ oc api-resources -o name | grep config.openshift.io- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- To see what cluster resources you can configure, run the following command: - oc explain <resource_name>.config.openshift.io - $ oc explain <resource_name>.config.openshift.io- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- To see the configuration of custom resource definition (CRD) objects in the cluster, run the following command: - oc get <resource_name>.config -o yaml - $ oc get <resource_name>.config -o yaml- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- To edit the cluster resource configuration, run the following command: - oc edit <resource_name>.config -o yaml - $ oc edit <resource_name>.config -o yaml- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow