Skip to content

Commit 6f103b4

Browse files
author
Sakthi Vetrivel
committed
removing diagram, fixing markdown syntax
1 parent 9434b83 commit 6f103b4

File tree

1 file changed

+12
-17
lines changed

1 file changed

+12
-17
lines changed

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

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
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
4-
author: klamenzo
5-
ms.author: suvetriv
4+
author: suvetriv
5+
ms.author: suvetriv, [email protected]
66
ms.service: container-service
77
ms.topic: conceptual
88
ms.date: 03/02/2020
@@ -13,7 +13,7 @@ keywords: aro, openshift, private cluster, red hat
1313
# Create a private cluster with Azure Red Hat OpenShift 3.11
1414

1515
> [!IMPORTANT]
16-
> ARO private clusters are currently only available in private preview in East US 2. Private preview acceptance is by invitation only. Please be sure to register your subscription before attempting to enable this feature.
16+
> Azure Red Hat OpenShift (ARO) private clusters are currently only available in private preview in East US 2. Private preview acceptance is by invitation only. Please be sure to register your subscription before attempting to enable this feature.
1717
1818
Private clusters provide the following benefits:
1919

@@ -27,14 +27,15 @@ Private clusters provide the following benefits:
2727
2828
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

30-
```
30+
```json
3131
properties:
3232
networkProfile:
3333
managementSubnetCidr: 10.0.1.0/24
3434
masterPoolProfile:
3535
apiProperties:
3636
privateApiServer: true
3737
```
38+
3839
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.
3940

4041
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.
@@ -50,9 +51,9 @@ Use the sample scripts in this section to set up and deploy your private cluster
5051
Fill in the environment variables below as using your own values.
5152

5253
> [!NOTE]
53-
> The locatin must be set to `eastus2` as this is currently the only supported location for private clusters.
54+
> The location must be set to `eastus2` as this is currently the only supported location for private clusters.
5455
55-
```
56+
``` bash
5657
export CLUSTER_NAME=
5758
export LOCATION=eastus2
5859
export TOKEN=$(az account get-access-token --query 'accessToken' -o tsv)
@@ -64,9 +65,10 @@ export SECRET=
6465
```
6566

6667
### private-cluster.json
68+
6769
Using the environment variables defined above, here is a sample cluster configuration with private cluster enabled.
6870

69-
```
71+
```json
7072
{
7173
"location": "$LOCATION",
7274
"name": "$CLUSTER_NAME",
@@ -131,21 +133,14 @@ Using the environment variables defined above, here is a sample cluster configur
131133

132134
After configuring your private cluster with the sample scripts above, run the following command to deploy your private cluster.
133135

134-
```
136+
``` bash
135137
az group create --name $CLUSTER_NAME --location $LOCATION
136-
137138
cat private-cluster.json | envsubst | curl -v -X PUT \
138139
-H 'Content-Type: application/json; charset=utf-8' \
139140
-H 'Authorization: Bearer '$TOKEN'' -d @- \
140141
https://management.azure.com/subscriptions/$SUBID/resourceGroups/$CLUSTER_NAME/providers/Microsoft.ContainerService/openShiftManagedClusters/$CLUSTER_NAME?api-version=2019-10-27-preview
141142
```
142143

143-
## Diagrams
144-
145-
### Private Cluster Architecture
146-
147-
![](diagrams/private-cluster-diagram.png)
148-
149-
### Data Flow
144+
## Next Steps
150145

151-
![](diagrams/private-cluster-data-flow.png))
146+
Now that you've set up your private Azure Red Hat OpenShift cluster, learn about how to access the OpenShift console [here](https://docs.openshift.com/container-platform/3.11/getting_started/developers_console.html)

0 commit comments

Comments
 (0)