This method allows for using an available Vagrant box, that has all the OpenShift software installed on a single VM.
Vagrant software allows for simplifying the deployment and the initial configuration of virtual machines, by using different underlying virtualization technologies. In most cases, a plain text file called Vagrantfile describes the parameters of the VM (such as the name, hostname, RAM, vCPUs, storage, and so on). Once Vagrantfile is ready, the Vagrant software can use it to create, stop, and destroy a VM.
The beauty of using Vagrant is that we can redeploy VMs as many times as we need to, and each time, we will have the same result:
Vagrant architecture
Vagrant includes the following main components:
- Vagrant software: Automates virtual machine building and configuration. Has the vagrant CLI utility, available for different operating systems...