The learning environment for this chapter consists of two VMs with the following characteristics:
Hostname | RAM | vCPU | OS |
openshift.example.com | 4 GB | 2 | CentOS 7 |
storage.example.com |
2 GB |
1 | CentOS 7 |
These machines can be deployed anywhere (bare metal, VMware, OpenStack, AWS, and so on). However, for educational purposes, we recommend using the Vagrant + VirtualBox/libvirt configuration to simplify the process of deployment and re-deployment of our virtual environment.
We also assume that all servers are accessible via both FQDNs and short names. This requires configuring /etc/hosts records, which is shown as follows:
172.24.0.11 openshift.example.com openshift
172.24.0.12 storage.example.com storage
The IPs must be the same as the ones that are specified in the following Vagrantfile. If you only want to use one machine for this lab, configure the...