Skip to content

Latest commit

 

History

History
executable file
·
88 lines (49 loc) · 3 KB

01-01 prerequisites.md

File metadata and controls

executable file
·
88 lines (49 loc) · 3 KB
sectionid sectionclass title parent-id
prereq
h2
Prerequisites
intro

Azure subscription and Azure Red Hat OpenShift environment

{% collapsible %}

If you have been provided with a Microsoft Hands-on Labs environment for this workshop through a registration link and an activation code, please continue to registration and activate the lab.

Registration

After you complete the registration, click Launch Lab

Launch lab

The Azure subscription and associated lab credentials will be provisioned. This will take a few moments. This process will also provision an Azure Red Hat OpenShift cluster.

Preparing lab

Once the environment is provisioned, a screen with all the appropriate lab credentials will be presented. Additionally, you'll have your Azure Red Hat OpenShift cluster endpoint. The credentials will also be emailed to the email address entered at registration.

Credentials

You can now skip the Create cluster section and jump to create project.

{% endcollapsible %}

Tools

Azure Cloud Shell

You can use the Azure Cloud Shell accessible at https://shell.azure.com once you login with an Azure subscription.

{% collapsible %}

Head over to https://shell.azure.com and sign in with your Azure Subscription details.

Select Bash as your shell.

Select Bash

Select Show advanced settings

Select show advanced settings

Set the Storage account and File share names to your resource group name (all lowercase, without any special characters). Leave other settings unchanged, then hit Create storage

Azure Cloud Shell

You should now have access to the Azure Cloud Shell

Set the storage account and fileshare names

{% endcollapsible %}

OpenShift CLI (oc)

You'll need to download the latest OpenShift CLI (oc) client tools for OpenShift 3.11. You can follow the steps below on the Azure Cloud Shell.

{% collapsible %}

Note You'll need to change the link below to the latest link you get from the page. GitHub release links

Please run following commands on Azure Cloud Shell to download and setup the OpenShift client.

cd ~
wget https://github.com/openshift/origin/releases/download/v3.11.0/openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit.tar.gz

mkdir openshift

tar -zxvf openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit.tar.gz -C openshift --strip-components=1

echo 'export PATH=$PATH:~/openshift' >> ~/.bashrc && source ~/.bashrc

The OpenShift CLI (oc) is now installed.

{% endcollapsible %}

GitHub Account

You'll need a personal GitHub account. You can sign up for free here.