Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2419066

Browse files
authored
Merge pull request rancher#191 from NetPenguins/master
added ip range to support latest virtual box on mac.
2 parents 1b609ce + 9ff3917 commit 2419066

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

vagrant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This folder contains Vagrant code to stand up a single Rancher server instance w
1313
0. Clone this repository and go into the vagrant subfolder
1414
0. Run `vagrant up`
1515

16-
When provisioning is finished the Rancher UI will become accessible on [172.22.101.101](http://172.22.101.101).
16+
When provisioning is finished the Rancher UI will become accessible on [192.168.56.101](http://192.168.56.101).
1717
The default password is `admin`, but this can be updated in the config.yaml file.
1818

1919
If you want to keep the configuration changes outside the git repository you can copy the config.yaml file to local_config.yaml and make changes there.

vagrant/config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ node:
1111
cpus: 1
1212
memory: 1500
1313
ip:
14-
master: 172.22.101.100
15-
server: 172.22.101.101
16-
node: 172.22.101.111
14+
master: 192.168.56.100
15+
server: 192.168.56.101
16+
node: 192.168.56.111
1717
linked_clones: true
1818
net:
1919
private_nic_type: 82545EM

vagrant/scripts/configure_rancher_node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash -x
2-
rancher_server_ip=${1:-172.22.101.101}
2+
rancher_server_ip=${1:-192.168.56.101}
33
admin_password=${2:-password}
44
curlimage="appropriate/curl"
55
jqimage="stedolan/jq"

vagrant/scripts/configure_rancher_server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -x
22

3-
rancher_ip="172.22.101.101"
3+
rancher_ip="192.168.56.101"
44
admin_password=${1:-password}
55
rancher_version=${2:-stable}
66
k8s_version=$3

0 commit comments

Comments
 (0)