Skip to content

Commit

Permalink
changed ip range to match new ip-range for Mac osX
Browse files Browse the repository at this point in the history
  • Loading branch information
dspolleke committed Nov 27, 2022
1 parent 8c7c38d commit 89d96ac
Show file tree
Hide file tree
Showing 40 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion drupal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.3 drupal
192.168.56.3 drupal

(Where `drupal`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion drupal/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "drupal"
config.vm.network :private_network, ip: "192.168.33.3"
config.vm.network :private_network, ip: "192.168.56.3"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :drupal do |drupal|
Expand Down
2 changes: 1 addition & 1 deletion drupal/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

drupal ansible_ssh_host=192.168.33.3 ansible_ssh_port=22
drupal ansible_ssh_host=192.168.56.3 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion gitlab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.22 gitlab
192.168.56.22 gitlab

(Where `gitlab`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion gitlab/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "gitlab"
config.vm.network :private_network, ip: "192.168.33.22"
config.vm.network :private_network, ip: "192.168.56.22"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :gitlab do |gitlab|
Expand Down
2 changes: 1 addition & 1 deletion gitlab/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

gitlab ansible_ssh_host=192.168.33.22 ansible_ssh_port=22
gitlab ansible_ssh_host=192.168.56.22 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion gogs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.23 gogs
192.168.56.23 gogs

(Where `gogs`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion gogs/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "gogs"
config.vm.network :private_network, ip: "192.168.33.23"
config.vm.network :private_network, ip: "192.168.56.23"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :gogs do |gogs|
Expand Down
2 changes: 1 addition & 1 deletion gogs/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

gogs ansible_ssh_host=192.168.33.23 ansible_ssh_port=22
gogs ansible_ssh_host=192.168.56.23 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion jenkins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.55 jenkins
192.168.56.55 jenkins

(Where `jenkins`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion jenkins/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "jenkins"
config.vm.network :private_network, ip: "192.168.33.55"
config.vm.network :private_network, ip: "192.168.56.55"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :jenkins do |jenkins|
Expand Down
2 changes: 1 addition & 1 deletion jenkins/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

jenkins ansible_ssh_host=192.168.33.55 ansible_ssh_port=22
jenkins ansible_ssh_host=192.168.56.55 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.71 kube1
192.168.56.71 kube1

(Where `kube1` is the hostname you have configured in the `Vagrantfile` for the first machine, which will be the Kubernetes master).

Expand Down
8 changes: 4 additions & 4 deletions kubernetes/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

# Define three VMs with static private IP addresses.
boxes = [
{ :name => "kube1", :ip => "192.168.33.71" },
{ :name => "kube2", :ip => "192.168.33.72" },
{ :name => "kube3", :ip => "192.168.33.73" }
{ :name => "kube1", :ip => "192.168.56.71" },
{ :name => "kube2", :ip => "192.168.56.72" },
{ :name => "kube3", :ip => "192.168.56.73" }
]

# Provision each of the VMs.
Expand All @@ -38,7 +38,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
"kubernetes_master:vars" => {
kubernetes_role: "master",
swapfile_path: "/dev/mapper/vagrant--vg-swap_1",
kubernetes_apiserver_advertise_address: "192.168.33.71"
kubernetes_apiserver_advertise_address: "192.168.56.71"
},
"kubernetes_node" => ["kube2", "kube3"],
"kubernetes_node:vars" => {
Expand Down
2 changes: 1 addition & 1 deletion lamp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.33 lamp
192.168.56.33 lamp

(Where `lamp`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion lamp/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "lamp"
config.vm.network :private_network, ip: "192.168.33.33"
config.vm.network :private_network, ip: "192.168.56.33"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :lamp do |lamp|
Expand Down
2 changes: 1 addition & 1 deletion lamp/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

lamp ansible_ssh_host=192.168.33.33 ansible_ssh_port=22
lamp ansible_ssh_host=192.168.56.33 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion lemp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.34 lemp
192.168.56.34 lemp

(Where `lemp`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion lemp/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "lemp"
config.vm.network :private_network, ip: "192.168.33.34"
config.vm.network :private_network, ip: "192.168.56.34"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :lemp do |lemp|
Expand Down
2 changes: 1 addition & 1 deletion lemp/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

lemp ansible_ssh_host=192.168.33.34 ansible_ssh_port=22
lemp ansible_ssh_host=192.168.56.34 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion munin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.90 munin
192.168.56.90 munin

(Where `munin`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion munin/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "munin"
config.vm.network :private_network, ip: "192.168.33.90"
config.vm.network :private_network, ip: "192.168.56.90"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :munin do |munin|
Expand Down
2 changes: 1 addition & 1 deletion munin/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

munin ansible_ssh_host=192.168.33.90 ansible_ssh_port=22
munin ansible_ssh_host=192.168.56.90 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.27 nodejs
192.168.56.27 nodejs

(Where `nodejs`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion nodejs/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "nodejs"
config.vm.network :private_network, ip: "192.168.33.27"
config.vm.network :private_network, ip: "192.168.56.27"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :nodejs do |nodejs|
Expand Down
2 changes: 1 addition & 1 deletion nodejs/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs ansible_ssh_host=192.168.33.27 ansible_ssh_port=22
nodejs ansible_ssh_host=192.168.56.27 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion phergie/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "phergie"
config.vm.network :private_network, ip: "192.168.33.99"
config.vm.network :private_network, ip: "192.168.56.99"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :phergie do |phergie|
Expand Down
2 changes: 1 addition & 1 deletion phergie/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

phergie ansible_ssh_host=192.168.33.99 ansible_ssh_port=22
phergie ansible_ssh_host=192.168.56.99 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion rails/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.8 rails
192.168.56.8 rails

(Where `rails`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion rails/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "rails"
config.vm.network :private_network, ip: "192.168.33.8"
config.vm.network :private_network, ip: "192.168.56.8"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :rails do |rails|
Expand Down
2 changes: 1 addition & 1 deletion rails/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rails ansible_ssh_host=192.168.33.8 ansible_ssh_port=22
rails ansible_ssh_host=192.168.56.8 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion solr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.44 solr
192.168.56.44 solr

(Where `solr`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion solr/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "solr"
config.vm.network :private_network, ip: "192.168.33.44"
config.vm.network :private_network, ip: "192.168.56.44"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :solr do |solr|
Expand Down
2 changes: 1 addition & 1 deletion solr/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

solr ansible_ssh_host=192.168.33.44 ansible_ssh_port=22
solr ansible_ssh_host=192.168.56.44 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion sonarqube/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.57 sonarqube
192.168.56.57 sonarqube

(Where `sonarqube`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion sonarqube/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "sonarqube"
config.vm.network :private_network, ip: "192.168.33.57"
config.vm.network :private_network, ip: "192.168.56.57"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :sonarqube do |sonarqube|
Expand Down
2 changes: 1 addition & 1 deletion sonarqube/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sonarqube ansible_ssh_host=192.168.33.57 ansible_ssh_port=22
sonarqube ansible_ssh_host=192.168.56.57 ansible_ssh_port=22
2 changes: 1 addition & 1 deletion svn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Once the new VM is up and running (after `vagrant up` is complete and you're bac

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

192.168.33.90 svn
192.168.56.90 svn

(Where `svn`) is the hostname you have configured in the `Vagrantfile`).

Expand Down
2 changes: 1 addition & 1 deletion svn/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

config.vm.hostname = "svn"
config.vm.network :private_network, ip: "192.168.33.90"
config.vm.network :private_network, ip: "192.168.56.90"

# Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134
config.vm.define :svn do |svn|
Expand Down
2 changes: 1 addition & 1 deletion svn/provisioning/inventory
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by Vagrant

svn ansible_ssh_host=192.168.33.90 ansible_ssh_port=22
svn ansible_ssh_host=192.168.56.90 ansible_ssh_port=22

0 comments on commit 89d96ac

Please sign in to comment.