Skip to content

Commit 2ecf2cd

Browse files
author
Sakthi Vetrivel
committed
making fixes per review
1 parent 8d07d97 commit 2ecf2cd

File tree

6 files changed

+16
-18
lines changed

6 files changed

+16
-18
lines changed

articles/openshift/aro4x-support-policies.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ This article outlines configuration requirements for Azure Red Hat OpenShift 4 c
1919

2020
* All OpenShift Cluster operators must remain in a managed state. The list of cluster operators can be returned by running `oc get clusteroperators`.
2121
* The cluster Prometheus and Alertmanager services must not be removed or modified. Service Alertmanager rules must not be removed.
22-
* The ARO service sets the OpenShift cluster version. It must not be modified.
23-
* ARO service logging (mdsd pods) must not be removed or modified.
22+
* The Azure Red Hat OpenShift service sets the OpenShift cluster version. It must not be modified.
23+
* Azure Red Hat OpenShift service logging (mdsd pods) must not be removed or modified.
2424
* The 'arosvc.azurecr.io' cluster pull secret must not be removed or modified.
2525
* All cluster virtual machines must have outbound internet access, at least to the Azure Resource Manager (ARM) and service logging (Geneva) endpoints.
26-
* The ARO service accesses your cluster via Private Link Service. Service access must not be removed or modified.
26+
* The Azure Red Hat OpenShift service accesses your cluster via Private Link Service. Service access must not be removed or modified.
2727
* Non-RHCOS compute nodes are not supported. For example, you cannot use a RHEL compute node.
2828

2929
## Supported virtual machine sizes

articles/openshift/configure-azure-ad-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ cat > manifest.json<< EOF
8989
"source": null,
9090
"essential": false,
9191
"additionalProperties": []
92-
}
92+
}]
9393
EOF
9494
```
9595

articles/openshift/dns-forwarding.md

Lines changed: 1 addition & 1 deletion
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 ARO 4.3 cluster, you'll need to modify the DNS Operator in Azure Red Hat OpenShift 4. This modification will allow your application pods running inside the ARO 4.3 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

articles/openshift/toc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
- name: How-to guides
1616
expanded: true
1717
items:
18-
- name: Create a Azure Red Hat OpenShift 4 cluster
19-
href: howto-using-azure-redhat-openshift.md
2018
- name: Create a private Azure Red Hat OpenShift 4 cluster
2119
href: create-private-cluster.md
2220
- name: Configure DNS Forwarding for an Azure Red Hat OpenShift 4 cluster

articles/openshift/tutorial-connect-cluster.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ ms.date: 04/24/2020
1111

1212
# Tutorial: Connect to an Azure Red Hat OpenShift 4 cluster
1313

14-
In this tutorial, part two of three, you will connect to an Azure Red Hat OpenShift (ARO) cluster running OpenShift 4 as the kubeadmin user through the OpenShift web console. You learn how to:
14+
In this tutorial, part two of three, you will connect to an Azure Red Hat OpenShift cluster running OpenShift 4 as the kubeadmin user through the OpenShift web console. You learn how to:
1515
> [!div class="checklist"]
1616
> * Obtain `kubeadmin` credentials for your cluster
1717
> * Install the OpenShift CLI
18-
> * Connect to an ARO cluster using the OpenShift CLI
18+
> * Connect to an Azure Red Hat OpenShift cluster using the OpenShift CLI
1919
2020
## Before you begin
2121

22-
In previous tutorials, an ARO cluster was created. If you have not done these steps, and would like to follow along, start with [Tutorial 1 - Create an Azure Red Hat Openshift 4 Cluster.](tutorial-create-cluster.md)
22+
In previous tutorials, an Azure Red Hat OpenShift cluster was created. If you have not done these steps, and would like to follow along, start with [Tutorial 1 - Create an Azure Red Hat Openshift 4 Cluster.](tutorial-create-cluster.md)
2323

2424
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).
2525

@@ -29,8 +29,8 @@ You can log into the cluster using the `kubeadmin` user. Run the following comm
2929

3030
```azurecli-interactive
3131
az aro list-credentials \
32-
--name aro-cluster \
33-
--resource-group aro-rg
32+
--name $CLUSTER \
33+
--resource-group $RESOURCEGROUP
3434
```
3535

3636
The following example output shows the password will be in `kubeadminPassword`.
@@ -46,8 +46,8 @@ You can find the cluster console URL by running the following command, which wil
4646

4747
```azurecli-interactive
4848
az aro show \
49-
--name aro-cluster \
50-
--resource-group aro-rg \
49+
--name $CLUSTER \
50+
--resource-group $RESOURCEGROUP \
5151
--query "consoleProfile.url" -o tsv
5252
```
5353

@@ -79,7 +79,7 @@ echo 'export PATH=$PATH:~/openshift' >> ~/.bashrc && source ~/.bashrc
7979
Retrieve the API server's address.
8080

8181
```azurecli-interactive
82-
apiServer=$(az aro show -g aro-rg -n aro-cluster --query apiserverProfile.url -o tsv)
82+
apiServer=$(az aro show -g $RESOURCEGROUP -n $CLUSTER --query apiserverProfile.url -o tsv)
8383
```
8484

8585
Login to the OpenShift cluster's API server using the following command. Replace **\<kubeadmin password>** with the password you just retrieved.
@@ -94,7 +94,7 @@ In this part of the tutorial, you learned how to:
9494
> [!div class="checklist"]
9595
> * Obtain `kubeadmin` credentials for your cluster
9696
> * Install the OpenShift CLI
97-
> * Connect to an ARO cluster using the OpenShift CLI
97+
> * Connect to an Azure Red Hat OpenShift cluster using the OpenShift CLI
9898
9999
Advance to the next tutorial:
100100
> [!div class="nextstepaction"]

articles/openshift/tutorial-delete-cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ ms.date: 04/24/2020
1111

1212
# Tutorial: Delete an Azure Red Hat OpenShift 4 cluster
1313

14-
In this tutorial, part three of three, an Azure Red Hat OpenShift (ARO) cluster running OpenShift 4 is deleted. You learn how to:
14+
In this tutorial, part three of three, an Azure Red Hat OpenShift cluster running OpenShift 4 is deleted. You learn how to:
1515

1616
> [!div class="checklist"]
1717
> * Delete an Azure Red Hat OpenShift cluster
1818
1919

2020
## Before you begin
2121

22-
In previous tutorials, an ARO cluster was created and connected to using the OpenShift web console. If you have not done these steps, and would like to follow along, start with [Tutorial 1 - Create an Azure Red Hat Openshift 4 Cluster.](tutorial-create-cluster.md)
22+
In previous tutorials, an Azure Red Hat OpenShift cluster was created and connected to using the OpenShift web console. If you have not done these steps, and would like to follow along, start with [Tutorial 1 - Create an Azure Red Hat Openshift 4 Cluster.](tutorial-create-cluster.md)
2323

2424
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).
2525

0 commit comments

Comments
 (0)