Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## Setting up Participant VMs
First, check the common-vars for the following:
```
APT_PROXY=http://172.21.1.1:3142
FLAVOR=m1.xlarge
PROJECT=f15ab4f845dc4052811fce96a3676ac8
SUBNET=172.21.248
```
APT_PROXY: the address of a caching web proxy for installing packages
FLAVOR: the flavour of the new VM to launch. Must have at least 4 CPUs, 8 GB RAM and 60 GB Disk.
PROJECT: The project ID in which to launch the new VM
SUBNET: the first three octets of the subnet to use. IP addresses will be allocated from this subnet, starting with .101 - .199
### Creating ports
This script will create the ports in Openstack on the subnet specified
```
./create-osm-vm-ports.sh
```
### Launching VM
This script will launch all the OSM VMs in a loop
```
./create-osm-vm-servers.sh
```
### Initial Configuration
This script updates apt, upgrades the system to the latest 20.04 and installs remote desktop software
```
./run-vm-setup.sh
```
### Install OSM
This script downloads the installer and runs it. It also sets the OSM admin password to `hackfest`.
```
./run-install-osm.sh
```
### Add VIM and K8s Cluster
```
./run-osm-vim-k8scluster-add.sh
```