DevOps Project: An end-to-end, one-command setup for local infra deployment


Objective
To demonstrate the use of Vagrant VM as a local infra simulation and deploying a simple static HTML page on it, using apache2 server.
Prerequisites
Oracle VM Virtual Box: Tool for creating Virtual Machines
192.168.56.1/24 Network Setup: Host-Only Virtual Box Network
Vagrant: Tool for creating VMs using code
Git: Version Control System
3-Step Demonstration
Run command
vagrant up --provision-with setup_system,copy_html_file,setup_webserver
.Site will be live on http://192.168.56.10/
Process Flow
After cloning one-click-local-infra repo from GitHub, there are two folders in it.
infra
web
infra folder: contains the code and scripts required to create Virtual Machine named “webserver“.
web folder: contains a template html file to be displayed after successful setup of local infra and apache2 webserver.
So, when we run vagrant up --provision-with setup_system,copy_html_file,setup_webserver
, what happens is:
Creation of VM “webserver“ of 2-core CPU and 2048 MB RAM.
Assign a static ip
192.168.56.10
to the VM (Requires an already setup host only network, mentioned in prerequisites).A script to update and upgrade system is executed.
index.html (template file) is moved to VM from Host system at
/tmp
directory.A script to install and setup apache2 package is executed followed by copying the index.html file to
/var/www/html
.In command, the keyword
--provision-with
is followed by 3 arguments, these 3 arguments represent steps 3,4 and 5 respectively.The command takes approximately 1.5 min.
After the command is executed successfully, the webpage is visible at http://192.168.56.10/
Thank You for Reading
Subscribe to my newsletter
Read articles from Mridul Roy directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
