You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/openshift/howto-create-private-cluster.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Create a private cluster with Azure Red Hat OpenShift 3.11 | Microsoft Docs
3
3
description: Create a private cluster with Azure Red Hat OpenShift 3.11
4
4
author: klamenzo
5
-
ms.author: b-lejaku
5
+
ms.author: suvetriv
6
6
ms.service: container-service
7
7
ms.topic: conceptual
8
8
ms.date: 03/02/2020
@@ -17,15 +17,15 @@ keywords: aro, openshift, private cluster, red hat
17
17
18
18
Private clusters provide the following benefits:
19
19
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.
22
22
23
23
## Before you begin
24
24
25
25
> [!NOTE]
26
26
> This feature requires version 2019-10-27-preview of the ARO HTTP API. It is not yet supported in the Azure CLI.
27
27
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.
29
29
30
30
```
31
31
properties:
@@ -37,13 +37,13 @@ properties:
37
37
```
38
38
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.
39
39
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.
41
41
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.
43
43
44
44
## Sample Configuration Scripts
45
45
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.
47
47
48
48
### Environment
49
49
@@ -97,7 +97,7 @@ Using the environment variables defined above, here is a sample cluster configur
0 commit comments