Python tool to deploy topologies on Ubuntu from the defined json config files.
Run ./scripts/install
Install from Python Package Index
sudo pip3 install topology-deployer
To install from source
sudo pip3 install .
Parse topology config
optional arguments:
-h, --help show this help message and exit
-c CONFIG, --config CONFIG
JSON Config file that defines the topology
-o {create,delete,CREATE,DELETE}, --operation {create,delete,CREATE,DELETE}
Operation to create or delete topology from the JSON Config
-i {ubuntu,rocky}, --image {ubuntu,rocky}
Choose the base OS image for the VMS
-l {DEBUG,INFO,WARNING,ERROR,CRITICAL}, --log {DEBUG,INFO,WARNING,ERROR,CRITICAL}
Set the log level
--dry-run Instead of executing, print the commands
--skip-network Skip creating networks. Cannot be used with --skip-vm
--skip-vm Skip creating vms. Cannot be used with --skip-network
A JSON cofig is taken as input. Check here for guide to define config
sudo topology-deployer -c config.json -o create -i ubuntu -l INFO
To skip creating networks. It can be used woth delete too. (This is BETA feature. Not fully tested)
sudo topology-deployer -c config.json -o create -i ubuntu -l INFO --skip-network
To skip creating virtual machines. It can be used woth delete too. (This is BETA feature. Not fully tested)
sudo topology-deployer -c config.json -o create -i ubuntu -l INFO --skip-vm
Same JSON cofig used to create topology is taken as input.
sudo topology-deployer -c config.json -o delete -l INFO
To print verbose output for created networks
sudo topology-deployer --print-nw -c config.json -o create
To print verbose output for created virtual machines
sudo topology-deployer --print-vm -c config.json -o create
The json config to define topologies comprises of 2 sections.
- Networks
- Virtual Machines
{
"version" : 2,
"networks" : [],
"vms" : []
}
The JSON network object comprises of array of networks. A network object skeleton is shown below
{
"networks" : [
{
"name" : "<name>",
"type" : "<nat | management | isolated>",
"subnet4" : "<ipv4 subnet>",
"subnet6" : "<ipv6 subnet>"
}
],
}
For nat network, name
and subnet4
are mandatory fields. subnet6
is optional in case you need v6 network in your topology. To have multiple NAT networks, you can add multiple objects in the networks.nat json object.
{
"networks" : [
{
"name" : "<name>",
"type" : "nat",
"subnet4" : "<ipv4 subnet>",
"subnet6" : "<ipv6 subnet>"
}
]
}
For management network, name
and subnet4
are mandatory fields. Currently we do not support v6 management network. To have multiple NAT networks, you can add multiple objects in the networks.management json object.
{
"networks" : [
{
"name" : "<name>",
"type" : "management",
"subnet4" : "<ipv4 subnet>"
}
]
}
For isolated network, name
is mandatory fields. To have multiple NAT networks, you can add multiple objects in the networks.isolated json object.
{
"networks" : [
{
"name" : "<name>",
"type" : "management"
}
]
}
The vms object is array of multiple vm objects. For the vm object on the JSON config, name
, flavor
, vnc_port
and networks
are mandatory fields. You can optionally use ram
, vcpus
and disk
to override the defaults for the flavor. A vms object skeleton is shown below
{
"vms" : [{
"name" : "",
"flavor" : "",
"vnc_port" : "",
"networks" : {
"<nw_name1>" : {
"v4" : ""
},
"<nw_name2>" : {
"v4" : "",
"v6" : ""
}
}
}]
}
To define networks for the vm, you have to use the network name as key and provide v4
address. You can also add a v6
address if the network type is NAT.
If you want to customize the resources for your VM you can use the vcpus
, ram
and disk
keys. Example
{
"vms" : [{
"name" : "",
"flavor" : "",
"vcpus" : 10,
"ram" : 8192,
"disk" : "128G",
"vnc_port" : "",
"networks" : {
"<nw_name1>" : {
"v4" : ""
},
"<nw_name2>" : {
"v4" : "",
"v6" : ""
}
}
}]
}