mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * rosa_hcp/rosa-tuning-config.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="rosa-deleting-node-tuning_{context}"]
|
|
= Deleting node tuning configurations
|
|
|
|
You can delete tuning configurations by using the {product-title} (ROSA) CLI, `rosa`.
|
|
|
|
[NOTE]
|
|
====
|
|
You cannot delete a tuning configuration referenced in a machine pool. You must first remove the tuning configuration from all machine pools before you can delete it.
|
|
====
|
|
|
|
.Prerequisites
|
|
|
|
* You have downloaded the latest version of the ROSA CLI.
|
|
* You have a cluster on the latest version .
|
|
* Your cluster has a node tuning configuration that you want delete.
|
|
|
|
.Procedure
|
|
|
|
* To delete the tuning configurations, run the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ rosa delete tuning-config -c <cluster_id> <name_of_tuning>
|
|
----
|
|
+
|
|
The tuning configuration on the cluster is deleted
|
|
+
|
|
.Example output
|
|
[source,terminal]
|
|
----
|
|
? Are you sure you want to delete tuning config sample-tuning on cluster sample-cluster? Yes
|
|
I: Successfully deleted tuning config 'sample-tuning' from cluster 'sample-cluster'
|
|
---- |