Skip to content

Commit 0fdd430

Browse files
committed
update
1 parent fbcd938 commit 0fdd430

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ git clone https://github.com/CubeSpawn/DevOps_Simulator.git
88

99
Setup your lab machines, (networked, running, etc)
1010
Collect or set your cluster IPs
11-
My setup is
11+
My physical setup is:
1212

1313
Workstation
1414

1515
Cluster01 Cluster02 Cluster03 Cluster04 Cluster05
1616

1717
Cluster06 Cluster07 Cluster08 Cluster09 Cluster10
1818

19+
All running Ubuntu 20.04 Desktop
20+
1921
Machines Cluster01-04 and 06-09 make up the hardware for this lab
2022

2123
Cluster05 and 10 are reserved for testing

base/shell/groupvercheck.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
1+
echo "*******************************************"
12
echo "10.42.0.201"
23
ssh 10.42.0.201 "bash -s" <./vercheck.sh
4+
echo "*******************************************"
35
echo "10.42.0.202"
46
ssh 10.42.0.202 "bash -s" <./vercheck.sh
7+
echo "*******************************************"
58
echo "10.42.0.203"
69
ssh 10.42.0.203 "bash -s" <./vercheck.sh
10+
echo "*******************************************"
711
echo "10.42.0.204"
812
ssh 10.42.0.204 "bash -s" <./vercheck.sh
13+
echo "*******************************************"
914
echo "10.42.0.206"
1015
ssh 10.42.0.206 "bash -s" <./vercheck.sh
16+
echo "*******************************************"
1117
echo "10.42.0.207"
1218
ssh 10.42.0.207 "bash -s" <./vercheck.sh
19+
echo "*******************************************"
1320
echo "10.42.0.208"
1421
ssh 10.42.0.208 "bash -s" <./vercheck.sh
22+
echo "*******************************************"
1523
echo "10.42.0.209"
1624
ssh 10.42.0.209 "bash -s" <./vercheck.sh
25+
echo "*******************************************"
1726

1827
exit 0

base/shell/installdocker-machine.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#From https://github.com/docker/machine/releases/
2+
3+
curl -L https://github.com/docker/machine/releases/download/v0.16.2/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
4+
chmod +x /tmp/docker-machine &&
5+
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
6+

base/shell/installvirtualbox.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#from https://linuxize.com/post/how-to-install-virtualbox-on-ubuntu-20-04/
22

33
sudo apt update
4-
4+
env APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
55
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
66
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
77

88
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" | \
99
sudo tee -a /etc/apt/sources.list.d/virtualbox.list
1010

1111
sudo apt update
12-
sudo apt install virtualbox-6.1
12+
sudo apt install -y virtualbox-6.1

0 commit comments

Comments
 (0)