greenfishbluefish / kata-vagrant-linux

Devops kata to learn Vagrant with Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Devops Kata to learn Vagrant (with Linux)

Devops kata to learn Vagrant with Linux

Pre-requisites

You have to:

Virtualbox and Windows 8/10

If you're on Windows 8.1 or 10 and have enabled Hyper-V (say, for Docker), you will want to disable Hyper-V and reboot your workstation. While Vagrant does work with Hyper-V, it is much harder to setup. For these katas, use the simplest solution - Virtualbox.

Series of katas

This kata is the first of a series of devops katas. Please visit the entrypoint for more information.

Instructions

You will need to use a shell. For Windows, either Powershell, Git-Bash, or the new Windows 10 Bash shell will work.

All instructions will be labeled with "Host" or "Guest". The host machine is the machine you run Git and Vagrant in. The guest machine is the VM.

  1. (Host) Clone this repository.
    • Do this on a local drive.
    • Your home directory may be on a network drive.
  2. (Host) Enter the new directory.
  3. (Host) Install the necessary Ruby libraries with bundle install
  4. (Host) Look at the current VM status with vagrant status
    • You should see something that looks like:
Current machine states:

default                   not created (virtualbox)
  1. (Host) Bring the VM up with vagrant up
  2. (Host) Log onto the VM with vagrant ssh and walk around, take a look.
    • (Guest) There is a folder /vagrant. This is a shared folder that is linked to the folder on the host machine which contains the Vagrantfile.
  3. (Host) Run the acceptance tests with bundle exec rake spec
    • The tests will bring up the VM if it's not up yet.
    • You will see a number of failures. These are what you're going to work on.
  4. (Guest) Manually fix the failures.
    • (Host) Re-run the tests (in another terminal) until they pass.
    • (Guest) For example, sudo groupadd acme to fix the first failure.
  5. (Host) Once all the tests pass, destroy the VM with vagrant destroy
    • We're going to recreate it shortly.
  6. (Host) Run the tests again.
    • This time, instead of making the tests pass manually, you will use the provided bash scaffolding in devops/provisioning/scripts.
    • As you add each command, run vagrant provision to have them run against the VM. Read the below section on Idempotency for how to write them.

If you get stuck, I've created an "answer" branch with how I would solve this problem. There's many ways to solve this (and other katas go into different ways using other tools), so don't try and hit my exact solution.

Discussion

There are a lot of moving parts. Every file exists for a purpose and is heavily commented, explaining what it does and why.

The primary components are:

  • The virtualization environment
    • Vagrantfile for the virtualization definition
    • The devops directory for all the devops functionality
  • The testing components
    • Gemfile, Gemfile.lock, and .gemrc for installing libraries
    • Rakefile for running tests (Rakefile == 'Ruby Makefile')
    • The spec directory for the tests themselves
  • The source control components
    • .gitignore for ensuring temporary files don't get checked in

Concepts

There are a lot of concepts going on here. Let's break them down, one at a time.

Virtualization

With Vagrant, you can create a new server in a completely isolated environment. You can destroy it and create it, over and over, until it's perfect. There are no links or dependencies on any shared resources, so this work is in a safe environment.

Unlike the traditional pattern of tweaking a single server over and over until it's perfect, While this is a great idea in theory, in practice no-one is ever able to recreate it exactly as it was. There's always a missed step or a change in version or something. And, you will always need to create another copy of any given server.

Vagrant promotes the pattern of recreating the server from scratch whenever a change is needed. This enforces the goal that all provisioning steps are done from scripts and those scripts are committed to source control. Changes to these scripts are;

  1. Done in Vagrant first (an operations development environment)
  2. Validated by the development team in their Vagrant-managed development environments
  3. Verified by CI environments using Vagrant to rebuild the servers very time
  4. Deployed to QA (and then Production) using the same scripts.

Idempotency

Definition

Most scripts are written given a known state and performs a set of tasks which assume that state. In other words, "Do this, then do that."

Idempotent scripts are written with a different mindset. Instead of "Do this," the mindset is "Ensure this is done." Scripts written in this way will check for the completed state and determine which commands are necessary to ensure the final state is achieved.

This is sometimes called "Desired State".

Many systems administration commands are already idempotent, such as most package managers like APT and Yum, and the service command.

A simple way of ensuring idempotency is to delete the resource (if it exists), then create it from scratch. This is often used for configuration files.

Stretch Goals

  • Add a test, see it fail, then make it pass.

About

Devops kata to learn Vagrant with Linux

License:MIT License


Languages

Language:Ruby 95.9%Language:Shell 4.1%