Skip to content

Commit db38447

Browse files
committed
Match original autoscaling docs
1 parent bc43262 commit db38447

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/source/kubernetes/microsoft/step-zero-azure.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,7 @@ If you prefer to use the Azure portal see the [Azure Kubernetes Service quicksta
230230
231231
This should take a few minutes and provide you with a working Kubernetes cluster!
232232
233-
Optionally, enable autoscaling:
234-
235-
where:
233+
Optionally, prepare autoscaling, where:
236234
237235
- `--vm-set-type VirtualMachineScaleSets` deploys the cluster as a scale set.
238236
- `--enable-cluster-autoscaler` enables autoscaling feature for your cluster
@@ -263,10 +261,13 @@ If you prefer to use the Azure portal see the [Azure Kubernetes Service quicksta
263261
--name <CLUSTER-NAME> \
264262
--resource-group <RESOURCE-GROUP-NAME> \
265263
--update-cluster-autoscaler \
266-
--min-count 1 \
267-
--max-count 5
264+
--min-count <DESIRED-MINIMUM-COUNT> \
265+
--max-count <DESIRED-MAXIMUM-COUNT> \
266+
--output table
268267
```
269268

269+
**Both** `--min-count` and `--max-count` must be defined.
270+
270271
Read more about available options for the autoscaler [here](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/aks/cluster-autoscaler.md).
271272

272273
8. If you're using the Azure CLI locally, install [kubectl](https://kubernetes.io/docs/reference/kubectl/), a tool

0 commit comments

Comments
 (0)