Software:Vagrant

From HandWiki
Short description: Software for portable virtual development environments
Vagrant
Vagrant.png
Vagrantup.jpg
Vagrant starting a virtual machine using vagrant up
Original author(s)Mitchell Hashimoto[1]
Developer(s)HashiCorp (Mitchell Hashimoto and John Bender)
Initial releaseMarch 8, 2010; 13 years ago (2010-03-08)[2]
Written inRuby
Operating systemLinux, FreeBSD, macOS, and Microsoft Windows
Available inEnglish
TypeConfiguration management
LicenseBusiness Source License 1.1[3](source-available)

Vagrant is a source-available software product for building and maintaining portable virtual software development environments;[4] e.g., for VirtualBox, KVM, Hyper-V, Docker containers, VMware, Parallels, and AWS. It tries to simplify the software configuration management of virtualization in order to increase development productivity. Vagrant is written in the Ruby language, but its ecosystem supports development in a few other languages. Vagrant has a Business Source License 1.1, while there is a fork called Viagrunts with the original MIT license.

History

Vagrant was first started as a personal side-project by Mitchell Hashimoto in January 2010. The first version of Vagrant was released in March 2010. In October 2010, Engine Yard declared that they were going to sponsor the Vagrant project. The first stable version, Vagrant 1.0, was released in March 2012, exactly two years after the original version was released. In November 2012, Mitchell formed an organization called HashiCorp to support the full-time development of Vagrant; Vagrant remained permissively licensed free software. HashiCorp now works on creating commercial editions and provides professional support and training for Vagrant.[citation needed]

Vagrant was originally tied to VirtualBox, but version 1.1 added support for other virtualization software such as VMware and KVM, and for server environments like Amazon EC2.[5] Vagrant is written in Ruby, but it can be used in projects written in other programming languages such as PHP, Python, Java, C#, and JavaScript.[6][7] Since version 1.6, Vagrant natively supports Docker containers, which in some cases can serve as a substitute for a fully virtualized operating system.[8]

Architecture

Vagrant uses "Provisioners" and "Providers" as building blocks to manage the development environments. Provisioners are tools that allow users to customize the configuration of virtual environments. Puppet and Chef are the two most widely used provisioners in the Vagrant ecosystem (Ansible has been available since at least 2014[9]). Providers are the services that Vagrant uses to set up and create virtual environments. Support for VirtualBox, Hyper-V, and Docker virtualization ships with Vagrant, while VMware and AWS are supported via plugins.[citation needed]

Vagrant sits on top of virtualization software as a wrapper and helps the developer interact easily with the providers. It automates the configuration of virtual environments using Chef or Puppet, and the user does not have to directly use any other virtualization software. Machine and software requirements are written in a file called "Vagrantfile" to execute necessary steps in order to create a development-ready box. "Box" is a format and an extension (.box) for Vagrant environments that is copied to another machine in order to replicate the same environment. The official Vagrant documentation[10] details the installation, command line usage, and relevant configuration of Vagrant.[citation needed]

License change and forks

HashiCorp announced on Aug 10 2023 that it changes the license of Vagrant from the MIT license to the Business Source License 1.1. [11] [12] At the same day, a fork of Vagrant called Viagrunts, with still the original MIT license was created.[13]

References

  1. Marvin, Rob (2015-02-26). "Mitchell Hashimoto is automating the world". Software Development Times. http://sdtimes.com/mitchell-hashimoto-hashicorp-vagrant-atlas-automate-world/. 
  2. "mitchellh/vagrant: Release v0.1.0". GitHub. https://github.com/mitchellh/vagrant/releases/tag/v0.1.0. 
  3. "vagrant/LICENSE at main · hashicorp/vagrant". https://github.com/hashicorp/vagrant/blob/main/LICENSE. 
  4. "Introducing Vagrant | Linux Journal". http://www.linuxjournal.com/content/introducing-vagrant. 
  5. Mitchell Hashimoto (2013). Vagrant: Up and Running. O'Reilly Media. p. 13. ISBN 978-1449335830. http://cdn.oreillystatic.com/oreilly/booksamplers/9781449335830_sampler.pdf. 
  6. "Vagrant: EC2-Like Virtual Machine Building and Provisioning from Ruby". http://www.rubyinside.com/vagrant-ruby-powered-virtualbox-vm-building-and-provisioning-3059.html. 
  7. "Vagrant - Getting Started - Project Setup". https://www.vagrantup.com/docs/getting-started/project_setup.html. 
  8. "Vagrant 1.6". 2014-05-06. https://www.hashicorp.com/blog/vagrant-1-6.html. 
  9. Brett, Adam (2014-09-23). "Vagrant & Ansible Quickstart Tutorial". https://adamcod.es/2014/09/23/vagrant-ansible-quickstart-tutorial.html. 
  10. "Documentation". https://www.vagrantup.com/docs. 
  11. "HashiCorp's new license is still open source-ish, just with less free lunch". https://www.theregister.com/2023/08/11/hashicorp_bsl_licence/. 
  12. "HashiCorp adopts Business Source License". https://www.hashicorp.com/blog/hashicorp-adopts-business-source-license. 
  13. https://github.com/viagrunts/viagrunts

External links