Skip to content

Commit 1ebc43e

Browse files
authored
Merge pull request #113052 from sakthi-vetrivel/aro4-postGA
ARO 4 post ga
2 parents 13603b4 + 48da523 commit 1ebc43e

File tree

5 files changed

+18
-17
lines changed

5 files changed

+18
-17
lines changed

articles/openshift/create-private-cluster.md

Lines changed: 5 additions & 5 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.0.75 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
22+
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.0.75 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest).
2323

2424
## Before you begin
2525

@@ -57,7 +57,7 @@ az -v
5757
```output
5858
...
5959
Extensions:
60-
aro 0.1.0
60+
aro 1.0.0
6161
...
6262
```
6363

@@ -78,9 +78,9 @@ Next, you will create a virtual network containing two empty subnets.
7878
1. **Set the following variables.**
7979

8080
```console
81-
LOCATION=eastus #the location of your cluster
82-
RESOURCEGROUP="v4-$LOCATION" #the name of the resource group where you want to create your cluster
83-
CLUSTER=aro-cluster #the name of your cluster
81+
LOCATION=eastus # the location of your cluster
82+
RESOURCEGROUP="v4-$LOCATION" # the name of the resource group where you want to create your cluster
83+
CLUSTER=aro-cluster # the name of your cluster
8484
```
8585

8686
1. **Create a resource group**

articles/openshift/dns-forwarding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.date: 04/24/2020
99
---
1010
# Configure DNS forwarding on an Azure Red Hat OpenShift 4 Cluster
1111

12-
To configure DNS Forwarding on an Azure Red Hat OpenShift cluster, you'll need to modify the DNS Operator. This modification will allow your application pods running inside the cluster to resolve names hosted on a private DNS server outside the cluster These steps are documented for OpenShift 4.3 [here](https://docs.openshift.com/container-platform/4.3/networking/dns-operator.html).
12+
To configure DNS Forwarding on an Azure Red Hat OpenShift cluster, you'll need to modify the DNS operator. This modification will allow your application pods running inside the cluster to resolve names hosted on a private DNS server outside the cluster. These steps are documented for OpenShift 4.3 [here](https://docs.openshift.com/container-platform/4.3/networking/dns-operator.html).
1313

1414
For example, if you want to forward all DNS requests for *.example.com to be resolved by a DNS server 192.168.100.10, you can edit the operator configuration by running:
1515

@@ -33,4 +33,4 @@ spec:
3333
Save the file and exit your editor.
3434
3535
## Next steps
36-
Check out more information on DNS Forwarding for OpenShift 4.3 [here](https://docs.openshift.com/container-platform/4.3/networking/dns-operator.html).
36+
Check out more information on DNS forwarding for OpenShift 4.3 [here](https://docs.openshift.com/container-platform/4.3/networking/dns-operator.html).

articles/openshift/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
items:
1818
- name: Create a private Azure Red Hat OpenShift 4 cluster
1919
href: create-private-cluster.md
20-
- name: Configure DNS Forwarding for an Azure Red Hat OpenShift 4 cluster
20+
- name: Configure DNS forwarding for an Azure Red Hat OpenShift 4 cluster
2121
href: dns-forwarding.md
22-
- name: Configure Azure Active Directory authentication for Azure Red Hat OpenShift 4 cluster
22+
- name: Configure Azure Active Directory authentication for an Azure Red Hat OpenShift 4 cluster
2323
items:
2424
- name: Configure Azure Active Directory authentication (CLI)
2525
href: configure-azure-ad-cli.md

articles/openshift/tutorial-create-cluster.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ Next, you will create a virtual network containing two empty subnets.
7575
1. **Set the following variables.**
7676

7777
```console
78-
LOCATION=eastus #the location of your cluster
79-
RESOURCEGROUP="v4-$LOCATION" #the name of the resource group where you want to create your cluster
80-
CLUSTER=cluster #the name of your cluster
78+
LOCATION=eastus # the location of your cluster
79+
RESOURCEGROUP="v4-$LOCATION" # the name of the resource group where you want to create your cluster
80+
CLUSTER=cluster # the name of your cluster
8181
```
8282

8383
1. **Create a resource group**

articles/openshift/tutorial-delete-cluster.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,20 @@ If you have access to multiple subscriptions, run `az account set -s {subscripti
3535

3636
## Delete the cluster
3737

38-
Open a Bash terminal and set the variable CLUSTER_NAME to the name of your cluster:
38+
In previous tutorials, the following variables were set.
3939

4040
```bash
41-
CLUSTER_NAME=yourclustername
41+
CLUSTER=yourclustername
42+
RESOURCE_GROUP=yourresourcegroup
4243
```
4344

44-
Now, delete your cluster:
45+
Using these values, delete your cluster:
4546

4647
```bash
47-
az aro delete --resource-group $CLUSTER_NAME --name $CLUSTER_NAME
48+
az aro delete --resource-group $RESOURCEGROUP --name $CLUSTER
4849
```
4950

50-
You'll be prompted whether you want to delete the cluster. After you confirm with `y`, it will take several minutes to delete the cluster. When the command finishes, the entire Resource Group and all resources inside it, including the cluster, will be deleted.
51+
You'll then be prompted to confirm if you want to delete the cluster. After you confirm with `y`, it will take several minutes to delete the cluster. When the command finishes, the entire resource group and all resources inside itincluding the clusterwill be deleted.
5152

5253
## Next steps
5354

0 commit comments

Comments
 (0)