Skip to content

Commit 9434b83

Browse files
author
Sakthi Vetrivel
committed
fixing language
1 parent f7b8d1e commit 9434b83

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create a private cluster with Azure Red Hat OpenShift 3.11 | Microsoft Docs
33
description: Create a private cluster with Azure Red Hat OpenShift 3.11
44
author: klamenzo
5-
ms.author: b-lejaku
5+
ms.author: suvetriv
66
ms.service: container-service
77
ms.topic: conceptual
88
ms.date: 03/02/2020
@@ -17,15 +17,15 @@ keywords: aro, openshift, private cluster, red hat
1717
1818
Private clusters provide the following benefits:
1919

20-
* Private clusters do not expose cluster control plane components (such as the API servers) on a public IP address.
21-
* The VNet of a private cluster is configurable by customers, allowing you to set up networking to allow peering with other VNets, including ExpressRoute environments. You can also configure custom DNS on the VNet in order to integrate with internal services.
20+
* Private clusters don't expose cluster control plane components (such as the API servers) on a public IP address.
21+
* The virtual network of a private cluster is configurable by customers, allowing you to set up networking to allow peering with other virtual networks, including ExpressRoute environments. You can also configure custom DNS on the virtual network to integrate with internal services.
2222

2323
## Before you begin
2424

2525
> [!NOTE]
2626
> This feature requires version 2019-10-27-preview of the ARO HTTP API. It is not yet supported in the Azure CLI.
2727
28-
The fields in the following configuration snippet are new and must be included in your cluster configuration. `managementSubnetCidr` must be within the cluster VNet and is used by Azure to manage the cluster.
28+
The fields in the following configuration snippet are new and must be included in your cluster configuration. `managementSubnetCidr` must be within the cluster virtual network and is used by Azure to manage the cluster.
2929

3030
```
3131
properties:
@@ -37,13 +37,13 @@ properties:
3737
```
3838
A private cluster can be deployed using the sample scripts provided below. Once the cluster is deployed, execute the `cluster get` command and view the `properties.FQDN` property to determine the private IP address of the OpenShift API server.
3939

40-
The cluster VNet will have been created with permissions so that you can modify it. You can then setup networking to access the VNet (ExpressRoute, VPN, VNet peering) as required for your needs.
40+
The cluster virtual network will have been created with permissions so that you can modify it. You can then set up networking to access the virtual network (ExpressRoute, VPN, virtual network peering) as required for your needs.
4141

42-
If you change the DNS nameservers on the cluster VNet, then you will need to issue an update on the cluster with the `properties.RefreshCluster` property set to `true` so that the VMs can be reimaged. This will allow them to pick up the new nameservers.
42+
If you change the DNS nameservers on the cluster virtual network, then you will need to issue an update on the cluster with the `properties.RefreshCluster` property set to `true` so that the VMs can be reimaged. This update will allow them to pick up the new nameservers.
4343

4444
## Sample Configuration Scripts
4545

46-
Use the sample scripts in this section to setup and deploy your private cluster.
46+
Use the sample scripts in this section to set up and deploy your private cluster.
4747

4848
### Environment
4949

@@ -97,7 +97,7 @@ Using the environment variables defined above, here is a sample cluster configur
9797
"osType": "Linux",
9898
"subnetCIDR": "10.0.0.0/24",
9999
"apiProperties": {
100-
"privateApiServer": true
100+
"privateApiServer": true
101101
}
102102
},
103103
"agentPoolProfiles": [

0 commit comments

Comments
 (0)