Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Vagrant to the rescue

Sebastian
October 04, 2014

Vagrant to the rescue

Many developers know the pain of setting up a development machine and share the setup with the team - Putting the same folders in the same place, keeping configurations in sync and managing external dependencies. Vagrant solves this problem by creating a development environment inside a virtual machine and making it easy to share with other developers. Within this talk, I'll take the audience on a trip from a time where everybody would install stuff on localhost until the software starts working to a land where the environment one develops in mirrors the production environment as closely as possible without changing the laptop/pc of the developer. I'll talk about devops and configuration management briefly and show how one can get started with vagrant. After this talk, the audience knows what problems vagrant solves and how to get started.

Sebastian

October 04, 2014
Tweet

More Decks by Sebastian

Other Decks in Programming

Transcript

  1. Vagrant to the rescue
    WebCamp Zagreb 2014
    @Sgoettschkes
    http://nos.twnsnd.co/image/95830917309

    View Slide

  2. “It works on my machine”

    View Slide

  3. “It’s all in SETUP.md”

    View Slide

  4. Enter vagrant

    View Slide

  5. Building blocks
    Configuration
    + Provider
    + Provisioner
    + Plugins
    = Vagrant
    http://pixabay.com/static/uploads/photo/2010/12/10/08/salad-1105_640.jpg

    View Slide

  6. Configuration
    Vagrant.configure(2) do |config|
    config.vm.box = "Sgoettschkes/debian7"
    config.vm.network "private_network", ip: "127.0.0.101"
    config.vm.synced_folder "../", "/srv/workspace"
    config.vm.provision "chef_solo" do |chef|
    chef.add_recipe "main"
    end
    end

    View Slide

  7. Providers

    View Slide

  8. Provisioners

    View Slide

  9. Synced folders
    http://upload.wikimedia.org/wikipedia/commons/5/5d/BalticServers_data_center.jpg

    View Slide

  10. SSH
    http://pixabay.com/static/uploads/photo/2013/04/08/22/48/tunnel-101976_640.jpg
    $ vagrant ssh
    # or
    $ ssh -p 2222 [email protected]
    # with password “vagrant”

    View Slide

  11. Plugins
    # AWS provider
    $ vagrant plugin install vagrant-aws
    # Boxen provisioner
    $ vagrant plugin install ventriloquist
    # Manage host files
    $ vagrant plugin install vagrant-hostmanager
    # Make screenshots of your VM
    $ vagrant plugin install vagrant-camera
    # … many more!

    View Slide

  12. Basic workflow
    $ vagrant init hashicorp/precise32
    $ vagrant up
    # box is booting
    $ vagrant ssh
    # you are now inside your vm
    $ vi Vagrantfile
    # change config
    # add provisioners and so on
    # don’t forget to comit Vagrantfile and provisioners to
    git!
    http://freehddesktopwallpaper.info/wp-content/uploads/2013/06/Blue-Flowers-hd-Wallpapers.jpg

    View Slide

  13. Basic workflow
    $ git clone [email protected]:awesomecompany/awesomeVm.git
    $ cd awesomeVm && vagrant up
    # Hack away
    $ git pull --rebase
    $ vagrant provision
    # Hack some more and change provision files
    $ vagrant provision
    $ git commit -am ‘Incredible changes’ && git push
    http://freehddesktopwallpaper.info/wp-content/uploads/2013/06/Blue-Flowers-hd-Wallpapers.jpg

    View Slide

  14. Use cases

    View Slide

  15. Use cases
    Development environment

    View Slide

  16. Use cases
    Development environment
    Testing environment

    View Slide

  17. Use cases
    Development environment
    Testing environment
    Local test box for PMs & Designer

    View Slide

  18. Use cases
    Development environment
    Testing environment
    Local test box for PMs & Designer
    Playing around

    View Slide

  19. Use cases
    Development environment
    Testing environment
    Local test box for PMs & Designer
    Playing around
    with clusters

    View Slide

  20. Use cases
    Development environment
    Testing environment
    Local test box for PMs & Designer
    Playing around
    with clusters
    Open Source projects

    View Slide

  21. What about...
    chef vs puppet?

    View Slide

  22. What about...
    one vs many boxes?

    View Slide

  23. What about...
    base boxes?

    View Slide

  24. … performance?

    View Slide

  25. http://community.openatria.com/sites/community.openatria.com/files/vagrant.png

    View Slide

  26. Vagrant
    “Development environments
    made easy”
    http://fc02.deviantart.net/fs50/i/2009/315/4/c/Tweaked_toy_airplane_by_afd.jpg

    View Slide