Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 74b4e96

Browse files
author
Sakthi Vetrivel
committedApr 27, 2020
polishing connect tutorial
1 parent cb00f7c commit 74b4e96

File tree

4 files changed

+38
-7
lines changed

4 files changed

+38
-7
lines changed
 
621 KB
Loading
377 KB
Loading

‎articles/openshift/tutorial-connect-cluster.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
---
2+
title: Tutorial - Connect to an Azure Red Hat OpenShift 4 cluster
3+
description: Learn how to connect a Microsoft Azure Red Hat OpenShift cluster
4+
author: suvetriv
5+
ms.author: suvetriv
6+
ms.topic: tutorial
7+
ms.service: container-service
8+
ms.date: 04/24/2020
9+
#Customer intent: As a developer, I want learn how to create an Azure Red Hat OpenShift cluster, scale it, and then clean up resources so that I am not charged for what I'm not using.
10+
---
11+
12+
# Tutorial: Connect to an Azure Red Hat OpenShift 4 cluster
13+
14+
In this tutorial, part two of three, you will connect to an Azure Red Hat OpenShift (ARO) cluster running OpenShift 4 as the kube-admin user through the OpenShift web console. You learn how to:
15+
> [!div class="checklist"]
16+
> * Obtain `kube-admin` credentials for your cluster
17+
> * Install the OpenShift CLI
18+
> * Connect to an ARO cluster using the OpenShift CLI
119
220
## Connect to the cluster
321

@@ -29,13 +47,13 @@ You can find the cluster console URL by running the following command, which wil
2947

3048
Launch the console URL in a browser and login using the `kubeadmin` credentials.
3149

32-
![Azure Red Hat OpenShift login screen](../_img/aro4-login.png)
50+
![Azure Red Hat OpenShift login screen](media/aro4-login.png)
3351

3452
## Install the OpenShift CLI
3553

3654
Once you're logged into the OpenShift Web Console, click on the **?** on the top right and then on **Command Line Tools**. Download the release appropriate to your machine.
3755

38-
![Azure Red Hat OpenShift login screen](../_img/aro4-download-cli.png)
56+
![Azure Red Hat OpenShift login screen](media/aro4-download-cli.png)
3957

4058
You can also download the latest release of the CLI appropriate to your machine from <https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/>.
4159

@@ -63,3 +81,15 @@ Login to the OpenShift cluster's API server using the following command. Replace
6381
```azurecli-interactive
6482
oc login $apiServer -u kubeadmin -p <kubeadmin password>
6583
```
84+
85+
## Next steps
86+
87+
In this part of the tutorial, you learned how to:
88+
> [!div class="checklist"]
89+
> * Obtain `kube-admin` credentials for your cluster
90+
> * Install the OpenShift CLI
91+
> * Connect to an ARO cluster using the OpenShift CLI
92+
93+
Advance to the next tutorial:
94+
> [!div class="nextstepaction"]
95+
> [Delete an Azure Red Hat OpenShift cluster](tutorial-delete-cluster.md)

‎articles/openshift/tutorial-create-cluster.md

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

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

14-
In part one of the series, you'll learn how to:
15-
14+
In this tutorial, part one of three, you'll prepare your environment to create an Azure Red Hat OpenShift cluster running OpenShift 4, and create a cluster. You will learn how to:
15+
> [!div class="checklist"]
16+
> * Setup the prerequisites and create the required virtual network and subnets
17+
> * Deploy a cluster
1618
19+
## Before you begin
1720

1821
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][azure-cli-install].
1922

20-
## Before you begin
21-
2223
### Install the 'az aro' extension
2324
The `az aro` extension allows you to create, access, and delete Azure Red Hat OpenShift clusters directly from the command line using the Azure CLI.
2425

@@ -57,7 +58,7 @@ aro 0.1.0
5758
...
5859
```
5960

60-
### Obtain a Red Hat pull secret (optional)
61+
### Get a Red Hat pull secret (optional)
6162

6263
A Red Hat pull secret enables your cluster to access Red Hat container registries along with additional content. This step is optional but recommended.
6364

0 commit comments

Comments
 (0)
Please sign in to comment.