OPS435 Python Lab 8

From CDOT Wiki
Revision as of 15:31, 24 November 2017 by Andrew (talk | contribs) (PART 1 - Create master VM image)
Jump to: navigation, search

LAB OBJECTIVES

Completing this course will give you the prerequisites for getting into the DevOps field. A DevOps professional is a system/network administrator with programming skills. As an introduction to that field, we will look at Fabric in this lab. Using Fabric you can automate deploying software, monitoring, and updating many systems at the same time, without using a terminal to connect to each of them separately.

REFERENCE

These links may be helpful for extra reading:
Category Resource Link
Official Fabric website
[1]
Official Fabric tutorial
[2]
Better Fabric tutorial
[3]
= INVESTIGATION 1: Extra VM Setup =

In order to experience Fabric's features in a realistic way, we're going to set up several virtual machines. To begin with they are all going to have the same configuration.

PART 1 - Set up your controller

In this lab you will use your existing vm centos7 as a workstation to control other VMs which we'll call workers.

We're only simulating the real world where you'd have hunreds of VMs in one or more clouds, but you can just imagine that the VMs you're creating on your computer are actually being created on an Amazon or Microsoft server.

PART 1 - Create master VM image

Create a new virtual machine, and allocate for it 1GB or RAM and 8GB of disk space. Install a Basic Web Server configuration of CentOS in that VM using the same CentOS .iso file you used for your first machine in this course.

Make sure that:

  • The hostname of the system is worker1.
  • It has a static IP address appropriate for your virtual network.
  • You don't need to create any extra user.
  • After installation ensure that you can access worker1 from your main vm using the static IP address you've assigned to it.

Set up SSH key login

In order for an automated system to be able to connect to your VM and administer it - you will need to be able to connect to it using SSH keys. You've done this in both OPS235 and OPS335.

Create a new SSH key on your main VM with your regular user. Please avoid using root. Then set things up so that your regular user on your main VM can SSH to the slave1 VM as root without putting in a password.

LAB 7 SIGN-OFF (SHOW INSTRUCTOR)

Have Ready to Show Your Instructor:


LAB REVIEW