You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/openshift/create-cluster.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: johnmarc
6
6
ms.topic: article
7
7
ms.service: azure-redhat-openshift
8
8
ms.custom: devx-track-azurecli
9
-
ms.date: 06/12/2024
9
+
ms.date: 09/13/2024
10
10
#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.
11
11
---
12
12
@@ -105,7 +105,7 @@ If you provide a custom domain for your cluster, note the following points:
105
105
106
106
* The OpenShift console will be available at a URL such as `https://console-openshift-console.apps.example.com`, instead of the built-in domain `https://console-openshift-console.apps.<random>.<location>.aroapp.io`.
107
107
108
-
* By default, OpenShift uses self-signed certificates for all of the routes created on custom domains `*.apps.example.com`. If you choose to use custom DNS after connecting to the cluster, you will need to follow the OpenShift documentation to [configure a custom CA for your ingress controller](https://docs.openshift.com/container-platform/4.6/security/certificates/replacing-default-ingress-certificate.html) and a [custom CA for your API server](https://docs.openshift.com/container-platform/4.6/security/certificates/api-server.html).
108
+
* By default, OpenShift uses self-signed certificates for all of the routes created on custom domains `*.apps.example.com`. If you choose to use custom DNS after connecting to the cluster, you will need to follow the OpenShift documentation to [configure a custom CA for your ingress controller](https://docs.openshift.com/container-platform/latest/security/certificates/replacing-default-ingress-certificate.html) and a [custom CA for your API server](https://docs.openshift.com/container-platform/latest/security/certificates/api-server.html).
109
109
110
110
### Create a virtual network containing two empty subnets
111
111
@@ -208,8 +208,14 @@ Run the following command to create a cluster. If you choose to use either of th
208
208
* Optionally, you can [pass your Red Hat pull secret](#get-a-red-hat-pull-secret-optional), which enables your cluster to access Red Hat container registries along with other content. Add the `--pull-secret @pull-secret.txt` argument to your command.
209
209
* Optionally, you can [use a custom domain](#prepare-a-custom-domain-for-your-cluster-optional). Add the `--domain foo.example.com` argument to your command, replacing `foo.example.com` with your own custom domain.
210
210
211
+
212
+
<!--
211
213
> [!NOTE]
212
214
> If you're adding any optional arguments to your command, be sure to close the argument on the preceding line of the command with a trailing backslash.
215
+
-->
216
+
217
+
> [!NOTE]
218
+
> The maximum number of worker nodes definable at creation time is 50. You can scale out up to 250 nodes after the cluster is created.
213
219
214
220
```azurecli-interactive
215
221
az aro create \
@@ -220,7 +226,11 @@ az aro create \
220
226
--worker-subnet worker-subnet
221
227
```
222
228
223
-
After executing the `az aro create` command, it normally takes about 35 minutes to create a cluster.
229
+
After executing the `az aro create` command, it normally takes about 45 minutes to create a cluster.
230
+
231
+
#### Large scale ARO clusters
232
+
233
+
If you are looking to deploy an Azure Red Hat OpenShift cluster with more than 100 worker nodes please see the [Deploy a large Azure Red Hat OpenShift cluster](howto-large-clusters.md)
0 commit comments