Installing OpenShift on Azure


Jesse Hoch
DevOps Training Architect II
In this lab you will be running the Ansible playbooks to install OpenShift on your cluster from your bastion host. Once installed you will have a funtional OpenShift cluster in Azure.
Install OpenShift and Connect
Introduction
In this hands-on lab, we will need to install the necessary packages and configure the bastion host to run the OpenShift installation playbooks.
Solution
Log in to the Azure Portal using the credentials provided on the lab instructions page.
Configure Cloud Shell
If prompted with a Welcome to Microsoft Azure get started window, click Maybe layer.
On the left-hand side navigation menu, click All Resources.
Let's set up Cloud Shell by clicking the Cloud Shell button in the top-right corner of the screen:

Begin configuring the Cloud Shell, click Bash.
Leave the default for the storage mounted window.
Click Show advanced settings.
Leave the existing subscription, resource group, and storage account.
Note: If the storage account does not populate, ensure that South Central US is selected for the Cloud Shell region field .
Under Storage account, click the radio button for Use existing.
Under File share, choose the radio button Create new and specify okdcloudshell as the new file share.
Click Create Storage.
Note: We should see a status of
Cloud Shell.Succeeded.
Download SSH Keys for the Lab
We will need to pull down the SSH keys to be able connect to the VMs using SSH. First, make the
.ssh
directory, if it isn't already there, with:mkdir .ssh
Then,
cd
into the directory with:cd .ssh
Pull down the SSH private key, and then the public key with the following commands and links:
wget https://raw.githubusercontent.com/linuxacademy/content-openshift-origin-azure/master/ssh/id_rsa wget https://raw.githubusercontent.com/linuxacademy/content-openshift-origin-azure/master/ssh/id_rsa.pub
Check the files with:
ls
Set the correct permissions with:
chmod 600 id_rsa*
Reset the SSH public key for each VM
- Use
cd
to go back to our home directory. - On the left-hand side navigation menu, click Virtual machines.
- Click bastionVM-0.
- Scroll down till you see Support + troubleshooting.
- Click Reset password.
- Make sure Reset SSH public key is selected.
- In the username field, type azureuser
- Copy the contents of your id_rsa.pub file and past it in the SSH public key field.
- Click update and then click it again.
- Now repeat these steps for the other VMs.
SSH to the bastion node
- Go back to the overview of your bastionVM-0
- Click the Connect button.
- On the Connect to virtual machine window, click the "Copy to clipboard" icon button for the Login using VM local account section.
Paste it into the Bash environment terminal. It should look similar to this:
ssh azureuser@104.214.65.210
- Type
y
foryes
when asked to continue connecting.
Install the Necessary Packages for the OpenShift Installation
Install the
centos-release-openshift-origin
package:sudo yum -y install centos-release-openshift-origin
Install the
openshift-ansible
package:sudo yum -y install openshift-ansible docker
Configure Docker
We will need to add the following options to
/etc/sysconfig/docker
:sudo sed -i -e "s#^OPTIONS='--selinux-enabled'#OPTIONS='--selinux-enabled --insecure-registry 172.30.0.0/16'#" /etc/sysconfig/docker
Next, we will enable
docker-cleanup
, and then Docker:sudo systemctl enable docker-cleanup sudo systemctl enable docker
Start the Docker service:
sudo systemctl start docker
Create Your Inventory File
Use the inventory file from the Git repo to create and inventory file for the OpenShift installation. We will find the inventory file at this link:
https://github.com/linuxacademy/content-openshift-origin-azure/blob/master/Inventory.txt
We will need to copy this to
/etc/ansible/hosts
with:sudo vim /etc/ansible/hosts
Verify that no errors will be encountered:
sudo chmod -R 777 /usr/share/ansible/openshift-ansible/playbooks
Navigate to the directory:
cd /usr/share/ansible/openshift-ansible/playbooks
Install OpenShift
Use Ansible to run the
prerequisites.yml
and thedeploy_cluster.yml
playbooks to install OpenShift:ansible-playbook prerequisites.yml ansible-playbook deploy_cluster.yml
Note: The
deploy_cluster.yml
playbook may take approximately 30 minutes to complete.
The install may get hung, but a retry file is created for us and can be used like so to run it again:
ansible-playbook deploy_cluster.yml --limit @/usr/share/ansible/openshift-ansible/playbooks/deploy_cluster.retry
- Use
exit
to logout of the bastion host. - Click Virtual machines in the left-hand side menu in the Microsoft Azure portal.
- Click masterVM-0.
- Click Connect.
- On the Connect to virtual machine window, click the "Copy to clipboard" icon button for the Login using VM local account section for the SSH command.
Paste the SSH command into the Bash environment terminal, that look like this:
ssh azureuser@40.84.153.202
Check the nodes:
oc get nodes
Note: We should see a
STATUS
ofReady
.
Conclusion
Congratulations — you've completed this hands-on lab!