DEV Community

Cover image for A Disposable Local Test Environment is Essential for DevOps / SysAdmin
Alexandre Couedelo
Alexandre Couedelo

Posted on • Updated on

A Disposable Local Test Environment is Essential for DevOps / SysAdmin

Working on your infrastructure setups and testing your automation script can be tedious if you don’t have a proper test environment that enables a fast iteration loop. The best when automating your server provisioning with Ansible scripts is to be able to set up servers a local server step by step then play all the steps from the ground up and make sure everything goes as planned. Once the local and iterative design phase is complete you will be ready to create an automated pipeline to set up an actual production environment.

Why Ansible you may ask? Ansible is simple and easy to learn if you have some Linux administration knowledge. We are configuring a Linux server after all you can’t escape that part.

With a small project spread across several articles, I want to show you what I consider the minimum requirement for a small self-hosted project. I invite you to check my Github repository for other articles and more details about the whole project.

In this article, you will see how to get started and set up a local testing environment. You will learn about Vagrant a tool to create local virtual machines on the fly.

Getting Started with Vagrant

First, install Vagrant. Simply go to the main page and download the product for your platform. Once Vagrant is installed you can need a hypervisor, the most popular is VirtualBox because it can run on Linux, Windows, and Mac OS. With both requirements installed (Vagrant + VirtualBox) you can get started spawning a Linux Debian ****virtual machine and start experimenting.

To create a VM, you need to understand the Concept of a Vagrant Box. Put simply Boxes is the way Vagrant packages environments so they can be shared via a registry such as Vagrant Cloud. Let’s search for a Debian box that fit your need. This one should do the job: generic/debian10

Two steps to getting your box running:

vagrant init generic/debian10
vagrant up
Enter fullscreen mode Exit fullscreen mode

The first command created a file called Vagrantfile that describes how to provision your environment. The file created with the init command simply specifies that we want to use the Vagrant box generic/debian10 as a base.

Vagrant.configure("2") do |config|
  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://vagrantcloud.com/search.
  config.vm.box = "generic/debian10"
end
Enter fullscreen mode Exit fullscreen mode

The second command vagrant up starts and provision the VM. Once your box is running you can SSH into and play with it.

vagrant ssh
Enter fullscreen mode Exit fullscreen mode

At that point, you could start making procedures about how to install everything you need. But this approach would no be to be maintainable and reproducible. This is why you need to also learn about Vagrant provisioners.

Vagrant and Ansible

Ansible is a simple automation tool that can orchestrate pretty much any task you would need to configure and maintain your infrastructure. Ansible work best when you are dealing with actual machines (servers or virtual machines), I would not recommend using it to provision Cloud infrastructure as it lacks a state management capabilities you can find in other tools such as Terraform. But here we will be dealing with configuring Linux servers so ansible works best here.

In order to make the bridge between Vagrant and Ansible, you will use the Ansible *Provisioners.* Provisioners are tools that vagrant will use to set up your virtual machine and Vagrant support the most command tools on the market and offers the ability to create your own provisioner to meet your needs. But let’s focus on the Ansible Local Provisioner, that way you don’t even have to worry about installing Ansible on your local machine Vagrant will install it inside your virtual machine.

Vagrant.configure("2") do |config|
  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://vagrantcloud.com/search.
  config.vm.box = "generic/debian10"

    # The Ansible Local provisioner requires that all the Ansible Playbook files are available on the guest machine
  config.vm.synced_folder ".", "/vagrant"

  config.vm.provision "ansible_local" do |ansible|
    ansible.playbook = "playbook.yml"
  end
end
Enter fullscreen mode Exit fullscreen mode

Vagrant makes it easy for you to run your ansible provisioning scripts against the virtual machine it created for you. You should see a folder .vagrant at the root of your project (this folder should be ignored by git, if not add it to your .gitignore).

Next you need to create an “hello-world” playbook called playbook.yaml:

- name: This is a hello-world example
  hosts: all
  tasks:
    - name: Create a file called '/tmp/testfile.txt' with the content 'hello world'.
      copy:
        content: hello-world
        dest: /tmp/testfilprovisioning
Enter fullscreen mode Exit fullscreen mode

You are ready to try out your first ansible provisioning with Vagrant

$ Vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'generic/debian10' version '3.6.8' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Fixed port collision for 22 => 2222. Now on port 2200.
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
==> default: Forwarding ports...
    default: 22 (guest) => 2200 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2200
    default: SSH username: vagrant
    default: SSH auth method: private key
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Mounting shared folders...
    default: /vagrant => E:/Nokwebspace/infra-bootstrap-tools
==> default: Running provisioner: ansible_local...
    default: Installing Ansible...
    default: Running ansible-playbook...

PLAY [This is a hello-world example] *******************************************

TASK [Gathering Facts] *********************************************************
ok: [default]

TASK [Create a file called '/tmp/testfile.txt' with the content 'hello world'.] ***
changed: [default]

PLAY RECAP *********************************************************************
default                    : ok=2    changed=1    unreachable=0    failed=0
Enter fullscreen mode Exit fullscreen mode

If you make changes to the playbook you can simply run only the provisioning stage

vagrant provision
Enter fullscreen mode Exit fullscreen mode

Once you are done or want to take a break simply stop the VM.

vagrant halt
Enter fullscreen mode Exit fullscreen mode

Conclusion

You are ready to start working on your next infrastructure provisioning project. Having a disposable test environment is essential and Vagrant will soon become your favorite tool.

You can check my Github repository https://github.com/xNok/infra-bootstrap-tools to find more tutorials and build the following infrastructure.

Infrastructure for small self-hosted projects

Oldest comments (0)