mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * rosa_cluster_admin/rosa-cluster-autoscaling.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="rosa-edit-cluster-autoscale-cli_{context}"]
|
|
= Edit autoscaling after cluster creation with the ROSA CLI
|
|
|
|
You can edit any specific parameters of the cluster autoscaler after creating the autoscaler.
|
|
|
|
.Procedure
|
|
|
|
//ROSA HCP procedure
|
|
ifdef::openshift-rosa-hcp[]
|
|
* To edit the cluster autoscaler, run the following command:
|
|
+
|
|
.Example
|
|
[source,terminal]
|
|
----
|
|
$ rosa edit autoscaler --cluster=<mycluster>
|
|
----
|
|
+
|
|
** To edit a specific parameter, run the following command:
|
|
+
|
|
.Example
|
|
[source,terminal]
|
|
----
|
|
$ rosa edit autoscaler -h --cluster=<mycluster> <parameter>=<value>
|
|
----
|
|
endif::openshift-rosa-hcp[]
|
|
|
|
//ROSA Classic procedure
|
|
ifdef::openshift-rosa[]
|
|
* To edit the cluster autoscaler, run the following command:
|
|
+
|
|
.Example
|
|
[source,terminal]
|
|
----
|
|
$ rosa edit autoscaler --cluster=<mycluster>
|
|
----
|
|
+
|
|
** To edit a specific parameter, run the following command:
|
|
+
|
|
.Example
|
|
[source,terminal]
|
|
----
|
|
$ rosa edit autoscaler --cluster=<mycluster> <parameter>
|
|
----
|
|
endif::openshift-rosa[]
|