initial lxd based node working from simple scripts
This commit is contained in:
parent
2397cd58ee
commit
e83b38d96a
8 changed files with 483 additions and 3 deletions
|
@ -3,6 +3,7 @@ Provides default node maps that can be used to run core with.
|
|||
"""
|
||||
import core.nodes.base
|
||||
import core.nodes.docker
|
||||
import core.nodes.lxd
|
||||
import core.nodes.network
|
||||
import core.nodes.physical
|
||||
from core.emane.nodes import EmaneNet
|
||||
|
@ -27,5 +28,6 @@ NODES = {
|
|||
NodeTypes.TAP_BRIDGE: GreTapBridge,
|
||||
NodeTypes.PEER_TO_PEER: core.nodes.network.PtpNet,
|
||||
NodeTypes.CONTROL_NET: core.nodes.network.CtrlNet,
|
||||
NodeTypes.DOCKER: core.nodes.docker.DockerNode
|
||||
NodeTypes.DOCKER: core.nodes.docker.DockerNode,
|
||||
NodeTypes.LXC: core.nodes.lxd.LxcNode
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue