Skip to content

Commit 814d4e9

Browse files
committed
Update all Vagrant VM host-only private network IP ranges.
1 parent 441f8b1 commit 814d4e9

File tree

51 files changed

+102
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+102
-102
lines changed

deployments-balancer/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ This project builds a simple application architecture with a load balancer which
44

55
The infrastructure is fairly simple, with the following structure:
66

7-
-----------------------
8-
| HAProxy (192.168.4.2) |
9-
-----------------------
7+
------------------------
8+
| HAProxy (192.168.56.2) |
9+
------------------------
1010
|
1111
_______________________________
1212
| |
13-
---------------------- ----------------------
14-
| Apache (192.168.4.3) | | Apache (192.168.4.4) |
15-
---------------------- ----------------------
13+
----------------------- -----------------------
14+
| Apache (192.168.56.3) | | Apache (192.168.56.4) |
15+
----------------------- -----------------------
1616

1717
## Building the VMs
1818

@@ -22,7 +22,7 @@ The infrastructure is fairly simple, with the following structure:
2222
4. Run `ansible-galaxy install -r requirements.yml` in this directory to get the required Ansible roles.
2323
5. Run `vagrant up` to build the VMs and configure the infrastructure.
2424

25-
When Vagrant is finished provisioning the VMs with Ansible, you should be able to visit `http://192.168.4.2/`, and you'll see the default Ubuntu Apache 2 'installation complete' page (loaded from one of the two backend web servers through HAProxy).
25+
When Vagrant is finished provisioning the VMs with Ansible, you should be able to visit `http://192.168.56.2/`, and you'll see the default Ubuntu Apache 2 'installation complete' page (loaded from one of the two backend web servers through HAProxy).
2626

2727
## Performing a zero-downtime deployment
2828

deployments-balancer/Vagrantfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Vagrant.configure("2") do |config|
1515

1616
# Define three VMs with static private IP addresses.
1717
boxes = [
18-
{ :name => "bal1", :ip => "192.168.4.2" },
19-
{ :name => "app1", :ip => "192.168.4.3" },
20-
{ :name => "app2", :ip => "192.168.4.4" }
18+
{ :name => "bal1", :ip => "192.168.56.2" },
19+
{ :name => "app1", :ip => "192.168.56.3" },
20+
{ :name => "app2", :ip => "192.168.56.4" }
2121
]
2222

2323
# Provision each of the VMs.

deployments-balancer/inventory

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[balancer]
2-
192.168.4.2
2+
192.168.56.2
33

44
[app]
5-
192.168.4.3
6-
192.168.4.4
5+
192.168.56.3
6+
192.168.56.4
77

88
[deployments:children]
99
balancer

deployments-balancer/playbooks/provision.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121

2222
vars:
2323
haproxy_backend_servers:
24-
- name: 192.168.4.3
25-
address: 192.168.4.3:80
26-
- name: 192.168.4.4
27-
address: 192.168.4.4:80
24+
- name: 192.168.56.3
25+
address: 192.168.56.3:80
26+
- name: 192.168.56.4
27+
address: 192.168.56.4:80
2828

2929
roles:
3030
- geerlingguy.haproxy

deployments-rolling/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project builds a [Node.js](https://nodejs.org/)-based API app inside a VM.
1313
Once the VM is built, you can test the API by running the following command (copy and paste verbatim, without the leading `$`), which requests the `/hello/:name` endpoint on each server:
1414

1515
$ for i in {2..5}; \
16-
do curl -w "\n" "http://192.168.3.$i:8080/hello/john"; \
16+
do curl -w "\n" "http://192.168.56.$i:8080/hello/john"; \
1717
done
1818

1919
If the above command outputs `"hello john"` on four lines, everything worked correctly!

deployments-rolling/Vagrantfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Vagrant.configure("2") do |config|
1515

1616
# Define four VMs with static private IP addresses.
1717
boxes = [
18-
{ :name => "nodejs1", :ip => "192.168.3.2" },
19-
{ :name => "nodejs2", :ip => "192.168.3.3" },
20-
{ :name => "nodejs3", :ip => "192.168.3.4" },
21-
{ :name => "nodejs4", :ip => "192.168.3.5" }
18+
{ :name => "nodejs1", :ip => "192.168.56.2" },
19+
{ :name => "nodejs2", :ip => "192.168.56.3" },
20+
{ :name => "nodejs3", :ip => "192.168.56.4" },
21+
{ :name => "nodejs4", :ip => "192.168.56.5" }
2222
]
2323

2424
# Provision each of the VMs.

deployments-rolling/inventory

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[nodejs-api]
2-
192.168.3.2
3-
192.168.3.3
4-
192.168.3.4
5-
192.168.3.5
2+
192.168.56.2
3+
192.168.56.3
4+
192.168.56.4
5+
192.168.56.5
66

77
[nodejs-api:vars]
88
ansible_user=vagrant

deployments/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project builds a [Ruby on Rails](http://rubyonrails.org/)-based app inside
1010
4. Run `ansible-galaxy install -r requirements.yml` in this directory to get the required Ansible roles.
1111
5. Run `vagrant up` to build the VM and deploy the version of the app specified in `playbooks/vars.yml`.
1212

13-
Once the VM is built, you can visit `http://192.168.33.7/` (or whatever domain name you point to that IP address in your local hosts file) to view the demo app.
13+
Once the VM is built, you can visit `http://192.168.56.7/` (or whatever domain name you point to that IP address in your local hosts file) to view the demo app.
1414

1515
## Deploying application updates
1616

deployments/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Vagrant.configure(2) do |config|
1313
end
1414

1515
config.vm.hostname = "rails-demo"
16-
config.vm.network :private_network, ip: "192.168.33.7"
16+
config.vm.network :private_network, ip: "192.168.56.7"
1717

1818
config.vm.provision "ansible" do |ansible|
1919
ansible.playbook = "playbooks/main.yml"

deployments/playbooks/inventory-ansible

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[rails]
2-
192.168.33.7
2+
192.168.56.7
33

44
[rails:vars]
55
ansible_user=vagrant

docker-flask/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac
3232

3333
You need to modify your host machine's hosts file (Mac/Linux: `/etc/hosts`; Windows: `%systemroot%\system32\drivers\etc\hosts`), adding the line below:
3434

35-
192.168.33.39 docker-flask.test
35+
192.168.56.39 docker-flask.test
3636

3737
After that is configured, you could visit http://docker-flask.test/ in a browser, and you'll see the test page, confirming the Flask container can communicate with the MySQL container.
3838

docker-flask/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
8-
config.vm.network :private_network, ip: "192.168.33.39"
8+
config.vm.network :private_network, ip: "192.168.56.39"
99
config.ssh.insert_key = false
1010

1111
config.vm.hostname = "docker-flask.test"

drupal/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Note: *If there are any errors during the course of running `vagrant up`, and it
3232

3333
### 3 - Configure your host machine to access the VM.
3434

35-
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.88.8 drupal.test` so you can connect to the VM.
35+
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.56.8 drupal.test` so you can connect to the VM.
3636
2. Open your browser and access [http://drupal.test/](http://drupal.test/).
3737

3838
## Notes

drupal/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
8-
config.vm.network :private_network, ip: "192.168.88.8"
8+
config.vm.network :private_network, ip: "192.168.56.8"
99
config.vm.hostname = "drupal.test"
1010
config.ssh.insert_key = false
1111

dynamic-inventory/custom/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Each of the scripts has comments for all the different parts of the code which g
66

77
## Testing these scripts
88

9-
A Vagrantfile is provided, so you can build a couple local VMs to test with the inventory scripts. Make sure you have Vagrant and VirtualBox installed, and run `vagrant up` inside this folder to build the two VMs, with the IP addresses `192.168.28.71` and `192.168.28.72`.
9+
A Vagrantfile is provided, so you can build a couple local VMs to test with the inventory scripts. Make sure you have Vagrant and VirtualBox installed, and run `vagrant up` inside this folder to build the two VMs, with the IP addresses `192.168.56.71` and `192.168.56.72`.
1010

1111
Then run the following command to test the inventory file with Ansible:
1212

dynamic-inventory/custom/Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1111
config.vm.define "inventory1" do |inventory|
1212
inventory.vm.hostname = "inventory1.test"
1313
inventory.vm.box = "geerlingguy/ubuntu2004"
14-
inventory.vm.network :private_network, ip: "192.168.28.71"
14+
inventory.vm.network :private_network, ip: "192.168.56.71"
1515
end
1616

1717
# Application server 2.
1818
config.vm.define "inventory2" do |inventory|
1919
inventory.vm.hostname = "inventory2.test"
2020
inventory.vm.box = "geerlingguy/ubuntu2004"
21-
inventory.vm.network :private_network, ip: "192.168.28.72"
21+
inventory.vm.network :private_network, ip: "192.168.56.72"
2222
end
2323
end

dynamic-inventory/custom/inventory.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
function example_inventory() {
1616
return [
1717
'group' => [
18-
'hosts' => ['192.168.28.71', '192.168.28.72'],
18+
'hosts' => ['192.168.56.71', '192.168.56.72'],
1919
'vars' => [
2020
'ansible_user' => 'vagrant',
2121
'ansible_ssh_private_key_file' => '~/.vagrant.d/insecure_private_key',
@@ -25,10 +25,10 @@ function example_inventory() {
2525
],
2626
'_meta' => [
2727
'hostvars' => [
28-
'192.168.28.71' => [
28+
'192.168.56.71' => [
2929
'host_specific_var' => 'foo',
3030
],
31-
'192.168.28.72' => [
31+
'192.168.56.72' => [
3232
'host_specific_var' => 'bar',
3333
],
3434
],

dynamic-inventory/custom/inventory.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self):
3232
def example_inventory(self):
3333
return {
3434
'group': {
35-
'hosts': ['192.168.28.71', '192.168.28.72'],
35+
'hosts': ['192.168.56.71', '192.168.56.72'],
3636
'vars': {
3737
'ansible_user': 'vagrant',
3838
'ansible_ssh_private_key_file':
@@ -44,10 +44,10 @@ def example_inventory(self):
4444
},
4545
'_meta': {
4646
'hostvars': {
47-
'192.168.28.71': {
47+
'192.168.56.71': {
4848
'host_specific_var': 'foo'
4949
},
50-
'192.168.28.72': {
50+
'192.168.56.72': {
5151
'host_specific_var': 'bar'
5252
}
5353
}

elk/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Once the VMs are up and running (after `vagrant up` is complete and you're back
2020

2121
You need to modify your host machine's hosts file (Mac/Linux: `/etc/hosts`; Windows: `%systemroot%\system32\drivers\etc\hosts`), adding the lines below:
2222

23-
192.168.9.90 logs.test
24-
192.168.9.91 web.test
23+
192.168.56.90 logs.test
24+
192.168.56.91 web.test
2525

2626
(Where `logs.test`/`web.test` is the hostname you have configured in the `Vagrantfile`).
2727

elk/Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1818
# ELK server.
1919
config.vm.define "logs" do |logs|
2020
logs.vm.hostname = "logs.test"
21-
logs.vm.network :private_network, ip: "192.168.9.90"
21+
logs.vm.network :private_network, ip: "192.168.56.90"
2222

2323
logs.vm.provision :ansible do |ansible|
2424
ansible.playbook = "provisioning/elk/main.yml"
@@ -30,7 +30,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
3030
# Web server.
3131
config.vm.define "web" do |web|
3232
web.vm.hostname = "web.test"
33-
web.vm.network :private_network, ip: "192.168.9.91"
33+
web.vm.network :private_network, ip: "192.168.56.91"
3434

3535
web.vm.provider :virtualbox do |v|
3636
v.memory = 512

elk/provisioning/elk/inventory

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[logs]
2-
logs.test ansible_ssh_host=192.168.9.90 ansible_ssh_port=22
2+
logs.test ansible_ssh_host=192.168.56.90 ansible_ssh_port=22

elk/provisioning/web/inventory

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[web]
2-
web.test ansible_ssh_host=192.168.9.91 ansible_ssh_port=22
2+
web.test ansible_ssh_host=192.168.56.91 ansible_ssh_port=22

elk/provisioning/web/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
lineinfile:
2828
dest: /etc/hosts
2929
regexp: '.*logs\.test$'
30-
line: "192.168.9.90 logs.test"
30+
line: "192.168.56.90 logs.test"
3131
state: present

galaxy-role-servers/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This folder contains two quick demo playbooks which build a LAMP and Apache Solr
66

77
After running `vagrant up`, you can access the installed LAMP site or Solr Admin dashboard following these instructions:
88

9-
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.18.8 galaxy-role-servers.test` so you can connect to the VM.
9+
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.56.8 galaxy-role-servers.test` so you can connect to the VM.
1010
2. Open your browser and access the following:
1111
a. LAMP server: [http://galaxy-role-servers.test/](http://galaxy-role-servers.test/).
1212
b. Solr Admin dashboard: [http://galaxy-role-servers.test:8983/](http://galaxy-role-servers.test:8983/).

galaxy-role-servers/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
8-
config.vm.network :private_network, ip: "192.168.18.8"
8+
config.vm.network :private_network, ip: "192.168.56.8"
99
config.vm.hostname = "galaxy-role-servers.test"
1010
config.ssh.insert_key = false
1111

gluster/Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Vagrant.configure("2") do |config|
1414

1515
# Define two VMs with static private IP addresses.
1616
boxes = [
17-
{ :name => "gluster1", :ip => "192.168.29.2" },
18-
{ :name => "gluster2", :ip => "192.168.29.3" }
17+
{ :name => "gluster1", :ip => "192.168.56.2" },
18+
{ :name => "gluster2", :ip => "192.168.56.3" }
1919
]
2020

2121
# Provision each of the VMs.

gluster/inventory

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[gluster]
2-
192.168.29.2
3-
192.168.29.3
2+
192.168.56.2
3+
192.168.56.3
44

55
[gluster:vars]
66
ansible_ssh_user=vagrant

https-nginx-proxy/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Note: *If there are any errors during the course of running `vagrant up`, and it
2424

2525
### 3 - Configure your host machine to access the VM.
2626

27-
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.46.84 https-proxy.test` so you can connect to the VM.
27+
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.56.84 https-proxy.test` so you can connect to the VM.
2828
2. Open your browser and access [http://https.test](http://https.test), and you should be redirected to the `https://` version of the URL.
2929

3030
## Notes

https-nginx-proxy/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/debian10"
88
config.vm.hostname = "https-proxy.test"
9-
config.vm.network :private_network, ip: "192.168.46.84"
9+
config.vm.network :private_network, ip: "192.168.56.84"
1010
config.ssh.insert_key = false
1111

1212
config.vm.provider :virtualbox do |v|

https-self-signed/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Note: *If there are any errors during the course of running `vagrant up`, and it
2424

2525
### 3 - Configure your host machine to access the VM.
2626

27-
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.76.84 https.test` so you can connect to the VM.
27+
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.56.84 https.test` so you can connect to the VM.
2828
2. Open your browser and access [https://https.test](https://https.test).
2929

3030
## Notes

https-self-signed/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
88
config.vm.hostname = "https.test"
9-
config.vm.network :private_network, ip: "192.168.76.84"
9+
config.vm.network :private_network, ip: "192.168.56.84"
1010
config.ssh.insert_key = false
1111

1212
config.vm.provider :virtualbox do |v|

includes/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This example playbook takes the `drupal` playbook example (included in the same
44

55
After running `vagrant up`, you can access the installed Drupal site following these instructions:
66

7-
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.88.89 drupal.test` so you can connect to the VM.
7+
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.56.89 drupal.test` so you can connect to the VM.
88
2. Open your browser and access [http://drupal.test/](http://drupal.test/).
99

1010
## About the Author

includes/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
8-
config.vm.network :private_network, ip: "192.168.88.89"
8+
config.vm.network :private_network, ip: "192.168.56.89"
99
config.vm.hostname = "drupal.test"
1010
config.ssh.insert_key = false
1111

jenkins/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Note: *If there are any errors during the course of running `vagrant up`, and it
2323

2424
### 3 - Configure your host machine to access the VM.
2525

26-
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.76.76 jenkinsci.test` so you can connect to the VM.
26+
1. [Edit your hosts file](http://docs.rackspace.com/support/how-to/modify-your-hosts-file/), adding the line `192.168.56.76 jenkinsci.test` so you can connect to the VM.
2727
2. Open your browser and access [http://jenkinsci.test:8080](http://jenkinsci.test:8080).
2828

2929
## Notes

jenkins/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
config.vm.box = "geerlingguy/ubuntu2004"
88
config.vm.hostname = "jenkinsci.test"
9-
config.vm.network :private_network, ip: "192.168.76.76"
9+
config.vm.network :private_network, ip: "192.168.56.76"
1010
config.ssh.insert_key = false
1111

1212
config.vm.provider :virtualbox do |v|

0 commit comments

Comments
 (0)