Vagrant ens permet crear màquines de forma declarativa i automàtica. Podriam dir que es el precursor de terraform. De fet està creat per la mateixa companyia, i per mi, és genial per tenir predefinides les configuracions de les vm que utilitzo per realitzar proves. Podem passar-li les indicacions de com volem crear la màquina i que volem aprovisionar-li mitjançant, shell scripts, Ansible, Chef, Puppet o Salt.
Vagrant no és compatible amb tots els proveïdors de virtualització. Per defecte pots utilitzar-lo amb virtualbox, Hyper-V o VMware. També suporta Docker. I si tens la motivació suficient. Tot i que tenint terraform potser no fa falta pots arribar a integrar-ne altres.
Boxes
Per funcionar, vagrant utilitza Boxes, que seria l’equivalent a les ami d’aws o les imatges de vmware. Aquestes imatges les podem trobar de forma oficial des de la mateixa pàgina de vagrant. També pots buscar alternatives de procedència més dubtosa en llocs com vagrantbox.es.
Podem veure els boxes descarregats amb box list
$ vagrant box list generic/ubuntu1804 (virtualbox, 3.6.14)
Per descarregar una imatge i tenirla al disc podem fer-ho aixi
$ vagrant box add centos/7 ==> box: Loading metadata for box 'centos/7' box: URL: https://vagrantcloud.com/centos/7 This box can work with multiple providers! The providers that it can work with are listed below. Please review the list and choose the provider you will be working with. 1) hyperv 2) libvirt 3) virtualbox 4) vmware_desktop Enter your choice: 3 ==> box: Adding box 'centos/7' (v2004.01) for provider: virtualbox box: Downloading: https://vagrantcloud.com/centos/boxes/7/versions/2004.01/providers/virtualbox.box Download redirected to host: cloud.centos.org box: Calculating and comparing box checksum... ==> box: Successfully added box 'centos/7' (v2004.01) for 'virtualbox'! $ vagrant box list centos/7 (virtualbox, 2004.01) generic/ubuntu1804 (virtualbox, 3.6.14)
Per defecte Vagrant descarrega aquestes imatges a les següents rutes. Per a Mac OS o Linux podem trobar-ho a ~/.vagrant.d/boxes/ i per A Windows es descarreguen a: C:/Users/USERNAME/.vagrant.d/boxes
Arrancar, aturar i eliminar màquines
Partirem d’un fitxer on definirem com volem la màquina. Per tal de tenir-ho ordenat jo ho poso tot dins un directori i allí dins crearem tot el necessari. Un cop dins el directori executarem vagrant init això, ens generarà un fitxer per defecte amb la configuració bàsica que necessita i exemples.
~/vagrantvm$ ls -lha total 8,0K drwxrwxr-x 2 marc marc 4,0K sep 5 19:30 . drwxr-xr-x 31 marc marc 4,0K sep 5 19:30 .. ~/vagrantvm$ vagrant init A `Vagrantfile` has been placed in this directory. You are now ready to `vagrant up` your first virtual environment! Please read the comments in the Vagrantfile as well as documentation on `vagrantup.com` for more information on using Vagrant. ~/vagrantvm$ ls -lha total 12K drwxrwxr-x 2 marc marc 4,0K sep 5 19:34 . drwxr-xr-x 31 marc marc 4,0K sep 5 19:30 .. -rw-rw-r-- 1 marc marc 3,0K sep 5 19:34 Vagrantfile
La sintaxi de vagrant està basada en Ruby pel que els que estiguin familiaritzats en aquest llenguatge entendran més fàcilment com configurar el fitxer. com que el fitxer té massa info per la primera màquina partirem d’un net i li posarem el bàsic.
En aquest cas cridem la funció configure del mòdul vagrant i li passem la variable config que ens permetrà modificar alguns paràmetres de la configuració. Que en aquest cas li indicarem quin box utilitzarem per aixecar la màquina.
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = "centos/7" end
Ara ja tenim tot llest per aixecar la màquina i podem fer-ho amb vagrant up aquesta comanda interactuarà amb el proveïdor escollit i ens aixecarà la vm a partir del box seleccionat.
~/vagrantvm$ vagrant up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Importing base box 'centos/7'... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'centos/7' version '2004.01' is up to date... ==> default: Setting the name of the VM: vagrantvm_default_1662372269853_77606 ==> 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: 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: default: Vagrant insecure key detected. Vagrant will automatically replace default: this with a newly generated keypair for better security. default: default: Inserting generated public key within guest... default: Removing insecure key from the guest if it's present... default: Key inserted! Disconnecting and reconnecting using new SSH key... ==> default: Machine booted and ready! ==> default: Checking for guest additions in VM... default: No guest additions were detected on the base box for this VM! Guest default: additions are required for forwarded ports, shared folders, host only default: networking, and more. If SSH fails on this machine, please install default: the guest additions and repackage the box to continue. default: default: This is not an error message; everything may continue to work properly, default: in which case you may ignore this message. ==> default: Rsyncing folder: /home/marc/vagrantvm/ => /vagrant
Ara podem connectar a la màquina amb vagrant ssh sense necessitat de conèixer la ip, l’usuari ni la contrassenya
~/vagrantvm$ vagrant ssh ==> vagrant: A new version of Vagrant is available: 2.3.0 (installed version: 2.2.19)! ==> vagrant: To upgrade visit: https://www.vagrantup.com/downloads.html [vagrant@localhost ~]$
I ja podríem utilitzar la vm. Si ara la volem aturar, podem fer-ho executant vagrant halt que intenta aturar-la de manera correcta, si no ho fa per les males. Per arrancar-la de nou només caldria executar vagrant up un altre cop. I per eliminar-la podem fer-ho amb vagrant destroy
Bona introducció al món vagrant