Development Environments with Vagrant and Puppet

Avatar von Paul Seiffert

Motivation

Setting up the infrastructure for new projects can be quite a pain in the ***. Even after the initial setup is done, adding new developers to the team requires a lot of time. Besides explaining the project to the new team member, the project’s development environment has to be installed on the new developer’s computer. This includes setting up virtual machines, web- and database-servers, updating libraries etc.

Many IT companies use the same technologies repeatedly which leaves them with multiple development environments that look very similar but have been set up separately. This problem can be solved by using a configuration management software and a smart tool for handling virtual machines.

@Mayflower

At Mayflower, we are developing PHP and JavaScript applications with modern frameworks like Symfony2 and Backbone.js. Having such technology stacks in multiple customer projects, we can make use of this similarity and improve our workflows. One obvious improvement is the reuse of system configurations. We achieved it by introducing Vagrant and Puppet. We did this quite some time ago now (> 1 year) and use these tools to create development environments that imitate our applications’ target platforms as good as possible.

Before that, our teams were working with regular virtual machines – one for each project. When a new developer joined the team, the virtual machine was copied to his computer using an USB drive, which worked quite well. Nevertheless, there was one problem: even the slightest change to the machine’s configuration required one developer to save his machine’s disk image onto an USB drive and transfer it to the other developers’ computers. They had to configure their development environment to use this new image and restart their virtual machines.

When our system administrators started to use Puppet and encouraged developer teams to follow their lead, many people were doubtful, even intimidated by the new technology. A few months later, everybody was using Vagrant and Puppet and nobody wanted to work without it again.

In the meantime, I set up Vagrant/Puppet environments for at least five new projects. Having spent (and billed) a lot of time on configuring similar infrastructures again and again, I am currently working on some ideas that might lead to more efficient solutions.

Vagrant ^ Puppet

Sadly, the scope of this article is way too limited to provide a comprehensive guide on the usage of Vagrant and Puppet. Having said that, I would still like to give you a quick overview.

Vagrant is a software that enables you to manage virtual machines from the command line. You can create new ones very quickly using templates (Base Boxes), and apply software configurations to them.

After you created and started a virtual machine with Vagrant, Puppet enters the stage. With Puppet, you describe a system’s configuration via so-called Manifests. Manifests contain statements (Facts) like “Apache2 is installed”. These facts are read by Puppet and transformed into configuration rules. When you run Puppet and everything went fine, all defined Facts are now actual facts of the virtual machine. The machine’s configuration now matches your manifests!

Let’s dig in

Setting up a new Vagrant environment is easy:

  1. Install Vagrant
  2. Execute vagrant init in your project’s directory
  3. Customize the generated Vagrantfile

In a Vagrantfile, you can adjust the external behavior of your machine. This includes its network adapters, whether it should use Puppet, the memory size etc. For a complete list of configuration options, have a look at the vagrant documentation.

If you want to make use of Puppet, you have to add the following lines:

config.vm.provision :puppet do |puppet|
    puppet.manifests_path = "puppet"
    puppet.manifest_file  = "myProject.pp"
    puppet.module_path    = "puppet/modules"
end

This configuration will make Puppet take the file puppet/myProject.pp as its main manifest and load third-party modules from puppet/modules. Each time you re-create your virtual machine, vagrant will trigger Puppet, which will use your manifests and configure the machine.

In puppet/myProject.pp, you probably want to include other manifests that contain the actual facts. This way, you don’t mix concerns and keep your facts structured.

Here is an example of a main manifest:

include myProject::tools
include myProject::webserver
include myProject::php

Each of the included manifests should be placed in the folder puppet/myProject/:

puppet/myProject/php.pp
puppet/myProject/tools.pp
puppet/myProject/webserver.pp

Inside of these manifests, you declare classes that group facts about one feature:

puppet/myProject/php.pp:

class myProject::php {
    package {["php5", "php5-fpm", "php-apc", "php5-mysql"]:
        ensure => present,
        notify => Service["nginx"],
    },
    ...
}

There are a lot of good Puppet tutorials and examples on the internet which explain how to write manifests for LAMP servers. If you are completely new to Puppet, you might want to ask somebody for help. I think the easiest way to learn it is by starting with a good example and modify it until it matches your requirements.

Supporting Symfony2 Environments

I recently found a discussion on Github about providing a simple way of starting new Symfony2 projects. The idea is to extend the framework’s standard distribution by adding a default vagrant/Puppet configuration. New projects would already contain a complete development environment. However, this solution would have to be really flexible. Otherwise, the resulting virtual machines couldn’t match the target servers. Therefore, I don’t really like the idea of putting this into the standard edition.
So I started working on a project that uses a different approach: It provides Symfony2 console commands that can generate and configure Vagrant/Puppet environments for the current project.

My aim is to bring this bundle to a point where you can configure a whole infrastructure interactively with just one console command. Nevertheless, I also like the idea of a simple configuration that is included in a Symfony2 distribution. Developers that are new to Symfony2 would just need to run two console commands (composer create-project the-new-symfony-distribution and vagrant up) for setting up a ready-to-use development environment.
With both of these solutions at hand, beginning new projects would be a matter of minutes.

References

Avatar von Paul Seiffert

Kommentare

7 Antworten zu „Development Environments with Vagrant and Puppet“

  1. Lesenswert: Development Environments with Vagrant and Puppet http://t.co/J2EdwEYS

  2. Dev environments with #puppet and #Vagrant ! #Symfony2 http://t.co/ZJVKB3QL /cc @mayflowerphp

  3. Development Environments with Vagrant and Puppet http://t.co/xSdOdrEB

  4. Development Environments with #Vagrant and #Puppet : http://t.co/2JW4gc2X

  5. Development Environments with Vagrant and Puppet | Mayflower Blog http://t.co/4GImW44y

  6. thanks for the reference to https://github.com/ericclemmons/ECVagrantBundle

    it is really the bundle to use?

    it was not clear to me whether you had a fork on a SE distro that you could run those two other commands

    I actually want to use it in the same way you propose with those two commands but for my project which is already not an SE

    so the best approach would be to have a script that creates the skeleton for an already existing project puts it up on some private repository like satis, then creates the vagrant configuration with it so that we can run those two commands.

    That way you can get any project ready for vagrant.

  7. Avatar von Paul Seiffert
    Paul Seiffert

    Hi @cordoval!

    yes, I think using this bundle is a very good idea! So far, it does not provide too much functionality and isn’t very flexible, but we are working on it! Follow me on twitter/github to see the progress.

    Before working on that bundle, I was using another approach with a new Symfony2 distribution. Probably Symfony2 should have both – a vagrant/puppet-distribution (the „simple way“) and a bundle that enables developers to configure their dev environments easily.

    Regards,
    Paul

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert


Für das Handling unseres Newsletters nutzen wir den Dienst HubSpot. Mehr Informationen, insbesondere auch zu Deinem Widerrufsrecht, kannst Du jederzeit unserer Datenschutzerklärung entnehmen.