diff --git a/.github/workflows/keycloak-scalability-benchmark.yml b/.github/workflows/keycloak-scalability-benchmark.yml index 23cf3342d..dce34fced 100644 --- a/.github/workflows/keycloak-scalability-benchmark.yml +++ b/.github/workflows/keycloak-scalability-benchmark.yml @@ -93,7 +93,7 @@ jobs: - name: Allow cluster to scale if: ${{ !inputs.skipCreateDeployment }} - run: rosa edit machinepool -c ${{ inputs.clusterName }} --min-replicas 3 scaling + run: rosa edit machinepool -c ${{ inputs.clusterName }} --min-replicas 3 --autorepair scaling - name: Create Keycloak deployment if: ${{ !inputs.skipCreateDeployment }} @@ -183,7 +183,7 @@ jobs: - name: Scale down the cluster if: ${{ (success() || failure()) && !inputs.skipDeleteProject }} - run: rosa edit machinepool -c ${{ inputs.clusterName }} --min-replicas 0 scaling + run: rosa edit machinepool -c ${{ inputs.clusterName }} --min-replicas 0 --autorepair scaling archive: name: Commit results to Git repository diff --git a/.github/workflows/rosa-multi-az-cluster-create.yml b/.github/workflows/rosa-multi-az-cluster-create.yml index 25d706f97..d0223c66b 100644 --- a/.github/workflows/rosa-multi-az-cluster-create.yml +++ b/.github/workflows/rosa-multi-az-cluster-create.yml @@ -119,8 +119,8 @@ jobs: - name: Scale ROSA clusters run: | - rosa edit machinepool -c ${{ env.CLUSTER_PREFIX }}-a --min-replicas 3 --max-replicas 10 scaling - rosa edit machinepool -c ${{ env.CLUSTER_PREFIX }}-b --min-replicas 3 --max-replicas 10 scaling + rosa edit machinepool -c ${{ env.CLUSTER_PREFIX }}-a --min-replicas 3 --max-replicas 10 --autorepair scaling + rosa edit machinepool -c ${{ env.CLUSTER_PREFIX }}-b --min-replicas 3 --max-replicas 10 --autorepair scaling - name: Setup Go Task uses: ./.github/actions/task-setup diff --git a/doc/benchmark/modules/ROOT/pages/report/rosa-benchmark-key-results.adoc b/doc/benchmark/modules/ROOT/pages/report/rosa-benchmark-key-results.adoc index 12e02bfa4..bf3aec806 100644 --- a/doc/benchmark/modules/ROOT/pages/report/rosa-benchmark-key-results.adoc +++ b/doc/benchmark/modules/ROOT/pages/report/rosa-benchmark-key-results.adoc @@ -54,7 +54,7 @@ Each test ran for 10 minutes. + [source,bash,subs="+quotes"] ---- -rosa edit machinepool -c **** --min-replicas 3 scaling +rosa edit machinepool -c **** --min-replicas 3 --autorepair scaling ---- . Deploy Keycloak and Monitoring + diff --git a/doc/kubernetes/modules/ROOT/pages/prerequisite/prerequisite-rosa.adoc b/doc/kubernetes/modules/ROOT/pages/prerequisite/prerequisite-rosa.adoc index 9ddd1d4b9..1d5ee0dfe 100644 --- a/doc/kubernetes/modules/ROOT/pages/prerequisite/prerequisite-rosa.adoc +++ b/doc/kubernetes/modules/ROOT/pages/prerequisite/prerequisite-rosa.adoc @@ -92,14 +92,14 @@ To scale the machine pool faster, issue a command like the following, and the ad [source,bash,subs=+quotes] ---- -rosa edit machinepool -c _**clustername**_ --min-replicas 3 scaling +rosa edit machinepool -c _**clustername**_ --min-replicas 3 --autorepair scaling ---- To allow scaling the machine pool back to 0, use a command like the following: [source,bash,subs=+quotes] ---- -rosa edit machinepool -c _**clustername**_ --min-replicas 0 scaling +rosa edit machinepool -c _**clustername**_ --min-replicas 0 --autorepair scaling ---- To use different instance types, use `rosa create machinepool` to create additional machine pools