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-3x.md
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,27 +1,28 @@
1
1
---
2
-
title: Create a private cluster with Azure Red Hat OpenShift 3.11 | Microsoft Docs
3
-
description: Create a private cluster with Azure Red Hat OpenShift 3.11
2
+
title: Create a private cluster with Azure Red Hat OpenShift 3.11
3
+
description: Learn how to create a private cluster with Azure Red Hat OpenShift 3.11 and about the benefits of private clusters.
4
4
author: sakthi-vetrivel
5
5
ms.author: suvetriv
6
6
ms.service: azure-redhat-openshift
7
-
ms.topic: conceptual
8
-
ms.date: 03/02/2020
7
+
ms.topic: how-to
8
+
ms.date: 06/02/2022
9
+
ms.custom: kr2b-contr-experiment
9
10
keywords: aro, openshift, private cluster, red hat
10
11
#Customer intent: As a customer, I want to create a private cluster on ARO OpenShift.
11
12
---
12
13
13
14
# Create a private cluster with Azure Red Hat OpenShift 3.11
14
15
15
16
> [!IMPORTANT]
16
-
> Azure Red Hat OpenShift 3.11 will be retired 30 June 2022. Support for creation of new Azure Red Hat OpenShift 3.11 clusters continues through 30 November 2020. Following retirement, remaining Azure Red Hat OpenShift 3.11 clusters will be shut down to prevent security vulnerabilities.
17
-
>
17
+
> Azure Red Hat OpenShift 3.11 will be retired. Following retirement, remaining Azure Red Hat OpenShift 3.11 clusters will be shut down to prevent security vulnerabilities.
18
+
>
18
19
> Follow this guide to [create an Azure Red Hat OpenShift 4 cluster](tutorial-create-cluster.md).
19
-
> If you have specific questions, [please contact us](mailto:[email protected]).
20
+
> If you have specific questions, [contact us](mailto:[email protected]).
20
21
21
22
Private clusters provide the following benefits:
22
23
23
-
* Private clusters don't expose cluster control plane components (such as the API servers) on a public IP address.
24
-
* 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.
24
+
* Private clusters don't expose cluster control plane components, such as the API servers, on a public IP address.
25
+
* The virtual network of a private cluster is configurable by customers. You can 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.
25
26
26
27
## Before you begin
27
28
@@ -36,11 +37,11 @@ properties:
36
37
privateApiServer: true
37
38
```
38
39
39
-
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.
40
+
A private cluster can be deployed using the sample scripts provided below. Once the cluster is deployed, run the `cluster get` command and view the `properties.FQDN` property to determine the private IP address of the OpenShift API server.
40
41
41
-
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.
42
+
The cluster virtual network is created with permissions so that you can modify it. You can set up networking to access the virtual network, such as ExpressRoute, VPN, and virtual network peering.
42
43
43
-
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.
44
+
If you change the DNS nameservers on the cluster virtual network, issue an update on the cluster with the `properties.RefreshCluster` property set to `true` so that the virtual machines can be reimaged. This update allows them to pick up the new nameservers.
44
45
45
46
## Sample configuration scripts
46
47
@@ -51,7 +52,7 @@ Use the sample scripts in this section to set up and deploy your private cluster
51
52
Fill in the environment variables below as using your own values.
52
53
53
54
> [!NOTE]
54
-
> The location must be set to `eastus2`as this is currently the only supported location for private clusters.
55
+
> The location must be set to `eastus2`because this is currently the only supported location for private clusters.
55
56
56
57
```bash
57
58
export CLUSTER_NAME=
@@ -66,7 +67,7 @@ export SECRET=
66
67
67
68
### private-cluster.json
68
69
69
-
Using the environment variables defined above, here is a sample cluster configuration with private cluster enabled.
70
+
This sample is a cluster configuration with private cluster enabled. It uses the environment variables defined above.
0 commit comments