Skip to content

Commit 37a6d47

Browse files
Merge pull request #227951 from pritamso/Broken-link-fix-joharder
Broken link fixed
2 parents 32ce334 + b64d180 commit 37a6d47

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/openshift/howto-create-private-cluster-4x.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this article, you'll prepare your environment to create Azure Red Hat OpenShi
1919
> * Setup the prerequisites and create the required virtual network and subnets
2020
> * Deploy a cluster with a private API server endpoint and a private ingress controller
2121
22-
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.30.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
22+
If you choose to install and use the CLI locally, this tutorial requires that you're running the Azure CLI version 2.30.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
2323

2424
## Before you begin
2525

@@ -61,19 +61,19 @@ A Red Hat pull secret enables your cluster to access Red Hat container registrie
6161
6262
1. **[Go to your Red Hat OpenShift cluster manager portal](https://cloud.redhat.com/openshift/install/azure/aro-provisioned) and log in.**
6363
64-
You will need to log in to your Red Hat account or create a new Red Hat account with your business email and accept the terms and conditions.
64+
You'll need to log in to your Red Hat account or create a new Red Hat account with your business email and accept the terms and conditions.
6565
6666
2. **Click Download pull secret.**
6767
6868
Keep the saved `pull-secret.txt` file somewhere safe - it will be used in each cluster creation.
6969
7070
When running the `az aro create` command, you can reference your pull secret using the `--pull-secret @pull-secret.txt` parameter. Execute `az aro create` from the directory where you stored your `pull-secret.txt` file. Otherwise, replace `@pull-secret.txt` with `@<path-to-my-pull-secret-file`.
7171
72-
If you are copying your pull secret or referencing it in other scripts, your pull secret should be formatted as a valid JSON string.
72+
If you're copying your pull secret or referencing it in other scripts, your pull secret should be formatted as a valid JSON string.
7373
7474
### Create a virtual network containing two empty subnets
7575
76-
Next, you will create a virtual network containing two empty subnets.
76+
Next, you'll create a virtual network containing two empty subnets.
7777
7878
1. **Set the following variables.**
7979
@@ -85,7 +85,7 @@ Next, you will create a virtual network containing two empty subnets.
8585

8686
1. **Create a resource group**
8787

88-
An Azure resource group is a logical group in which Azure resources are deployed and managed. When you create a resource group, you are asked to specify a location. This location is where resource group metadata is stored, it is also where your resources run in Azure if you don't specify another region during resource creation. Create a resource group using the [az group create][az-group-create] command.
88+
An Azure resource group is a logical group in which Azure resources are deployed and managed. When you create a resource group, you're asked to specify a location. This location is where resource group metadata is stored, it's also where your resources run in Azure if you don't specify another region during resource creation. Create a resource group using the [az group create][az-group-create] command.
8989

9090
```azurecli-interactive
9191
az group create --name $RESOURCEGROUP --location $LOCATION
@@ -176,7 +176,7 @@ Next, you will create a virtual network containing two empty subnets.
176176
Run the following command to create a cluster. 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 additional content.
177177
178178
>[!NOTE]
179-
> If you are copy/pasting commands and using one of the optional parameters, be sure delete the initial hashtags and the trailing comment text. As well, close the argument on the preceding line of the command with a trailing backslash.
179+
> If you're copy/pasting commands and using one of the optional parameters, be sure delete the initial hashtags and the trailing comment text. As well, close the argument on the preceding line of the command with a trailing backslash.
180180
181181
```azurecli-interactive
182182
az aro create \
@@ -194,12 +194,12 @@ az aro create \
194194
After executing the `az aro create` command, it normally takes about 35 minutes to create a cluster.
195195

196196
> [!NOTE]
197-
> When attempting to create a cluster, if you receive an error message saying that your resource quota has been exceeded, see [Adding Quota to ARO account](https://mobb.ninja/docs/quickstart-aro.html#adding-quota-to-aro-account) to learn how to proceed.
197+
> When attempting to create a cluster, if you receive an error message saying that your resource quota has been exceeded, see [Adding Quota to ARO account](https://mobb.ninja/docs/quickstart-aro/#adding-quota-to-aro-account) to learn how to proceed.
198198
199199
>[!IMPORTANT]
200200
> If you choose to specify a custom domain, for example **foo.example.com**, the OpenShift console will be available at a URL such as `https://console-openshift-console.apps.foo.example.com`, instead of the built-in domain `https://console-openshift-console.apps.<random>.<location>.aroapp.io`.
201201
>
202-
> By default OpenShift uses self-signed certificates for all of the routes created on `*.apps.<random>.<location>.aroapp.io`. If you choose Custom DNS, after connecting to the cluster, you will need to follow the OpenShift documentation to [configure a custom certificate for your ingress controller](https://docs.openshift.com/container-platform/4.8/security/certificates/replacing-default-ingress-certificate.html) and [custom certificate for your API server](https://docs.openshift.com/container-platform/4.8/security/certificates/api-server.html).
202+
> By default OpenShift uses self-signed certificates for all of the routes created on `*.apps.<random>.<location>.aroapp.io`. If you choose Custom DNS, after connecting to the cluster, you'll need to follow the OpenShift documentation to [configure a custom certificate for your ingress controller](https://docs.openshift.com/container-platform/4.8/security/certificates/replacing-default-ingress-certificate.html) and [custom certificate for your API server](https://docs.openshift.com/container-platform/4.8/security/certificates/api-server.html).
203203
204204

205205
### Create a private cluster without a public IP address (preview)
@@ -253,7 +253,7 @@ You can find the cluster console URL by running the following command, which wil
253253
```
254254

255255
>[!IMPORTANT]
256-
> In order to connect to a private Azure Red Hat OpenShift cluster, you will need to perform the following step from a host that is either in the Virtual Network you created or in a Virtual Network that is [peered](../virtual-network/virtual-network-peering-overview.md) with the Virtual Network the cluster was deployed to.
256+
> In order to connect to a private Azure Red Hat OpenShift cluster, you'll need to perform the following step from a host that is either in the Virtual Network you created or in a Virtual Network that is [peered](../virtual-network/virtual-network-peering-overview.md) with the Virtual Network the cluster was deployed to.
257257
258258
Launch the console URL in a browser and login using the `kubeadmin` credentials.
259259

@@ -276,7 +276,7 @@ apiServer=$(az aro show -g $RESOURCEGROUP -n $CLUSTER --query apiserverProfile.u
276276
```
277277

278278
>[!IMPORTANT]
279-
> In order to connect to a private Azure Red Hat OpenShift cluster, you will need to perform the following step from a host that is either in the Virtual Network you created or in a Virtual Network that is [peered](../virtual-network/virtual-network-peering-overview.md) with the Virtual Network the cluster was deployed to.
279+
> In order to connect to a private Azure Red Hat OpenShift cluster, you'll need to perform the following step from a host that is either in the Virtual Network you created or in a Virtual Network that is [peered](../virtual-network/virtual-network-peering-overview.md) with the Virtual Network the cluster was deployed to.
280280
281281
Login to the OpenShift cluster's API server using the following command. Replace **\<kubeadmin password>** with the password you just retrieved.
282282

0 commit comments

Comments
 (0)