Skip to content

Commit 6d697c4

Browse files
author
Sakthi Vetrivel
committed
adding indents
1 parent d6d5ed0 commit 6d697c4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/openshift/howto-using-azure-redhat-openshift.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ The `az aro` extension allows you to create, access, and delete Azure Red Hat Op
3636
> The `az aro` extension is currenty in preview. It may be changed or removed in a future release.
3737
> To opt-in for the `az aro` extension preview you need to register the `Microsoft.RedHatOpenShift` resource provider.
3838
>
39-
> ```
39+
> ```console
4040
> az provider register -n Microsoft.RedHatOpenShift --wait
4141
> ```
4242
4343
1. Log in to Azure.
4444
45-
```
45+
```console
4646
az login
4747
```
4848
4949
2. Run the following command to install the `az aro` extension:
5050

51-
```
51+
```console
5252
az extension add --source https://arosvc.blob.core.windows.net/az-preview/aro-0.1.0-py2.py3-none-any.whl
5353
```
5454

5555
3. Verify the ARO extension is registered.
5656

57-
```
57+
```console
5858
az -v
5959
...
6060
Extensions:
@@ -68,21 +68,21 @@ Follow these steps to create a virtual network containing two empty subnets.
6868

6969
1. Set the following variables.
7070

71-
```
71+
```console
7272
LOCATION=eastus #the location of your cluster
7373
RESOURCEGROUP="v4-$LOCATION" #the name of the resource group where you want to create your cluster
7474
CLUSTER=cluster #the name of your cluster
7575
```
7676

7777
2. Create a resource group for your cluster.
7878

79-
```
79+
```console
8080
az group create -g "$RESOURCEGROUP" -l $LOCATION
8181
```
8282

8383
3. Create the virtual network.
8484

85-
```
85+
```console
8686
az network vnet create \
8787
-g "$RESOURCEGROUP" \
8888
-n vnet \
@@ -92,7 +92,7 @@ Follow these steps to create a virtual network containing two empty subnets.
9292

9393
4. Add two empty subnets to your virtual network.
9494

95-
```
95+
```console
9696
for subnet in "$CLUSTER-master" "$CLUSTER-worker"; do
9797
az network vnet subnet create \
9898
-g "$RESOURCEGROUP" \
@@ -106,7 +106,7 @@ Follow these steps to create a virtual network containing two empty subnets.
106106

107107
5. Disable network policies for Private Link Service on your virtual network and subnets. This is a requirement for the ARO service to access and manage the cluster.
108108

109-
```
109+
```console
110110
az network vnet subnet update \
111111
-g "$RESOURCEGROUP" \
112112
--vnet-name vnet \
@@ -119,7 +119,7 @@ Follow these steps to create a virtual network containing two empty subnets.
119119

120120
Run the following command to create a cluster.
121121

122-
```
122+
```console
123123
az aro create \
124124
-g "$RESOURCEGROUP" \
125125
-n "$CLUSTER" \

0 commit comments

Comments
 (0)