Skip to content

Commit 7cd3bcf

Browse files
Merge pull request #228383 from johnmarco/jm-aro-multi-version-support
Multi-version support
2 parents af6b537 + add0dcd commit 7cd3bcf

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

articles/openshift/tutorial-create-cluster.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: joharder
55
ms.author: joharder
66
ms.topic: tutorial
77
ms.service: azure-redhat-openshift
8-
ms.date: 10/26/2020
8+
ms.date: 02/23/2022
99
#Customer intent: As a developer, I want learn how to create an Azure Red Hat OpenShift cluster, scale it, and then clean up resources so that I am not charged for what I'm not using.
1010
---
1111

@@ -223,6 +223,24 @@ az aro create \
223223

224224
After executing the `az aro create` command, it normally takes about 35 minutes to create a cluster.
225225

226+
#### Selecting a different ARO version
227+
228+
You can select to use a specific version of ARO when creating your cluster. First, use the CLI to query for available ARO versions:
229+
230+
`az aro get-versions --location <region>`
231+
232+
Once you've chosen the version, specify it using the `--version` parameter in the `aro create` command:
233+
234+
```azurecli-interactive
235+
az aro create \
236+
--resource-group $RESOURCEGROUP \
237+
--name $CLUSTER \
238+
--vnet aro-vnet \
239+
--master-subnet master-subnet \
240+
--worker-subnet worker-subnet
241+
--version <x.y.z>
242+
```
243+
226244
## Next steps
227245

228246
In this part of the tutorial, you learned how to:

0 commit comments

Comments
 (0)