From: Matus Fabian Date: Mon, 14 Mar 2016 10:45:44 +0000 (+0100) Subject: Add VM to NodeType X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=23b681550b878b62ca43ba3554d5d71dd7b4dff2 Add VM to NodeType Change-Id: Ic3a313837f48a1c7bd1c70876c82799ac1994f2f Signed-off-by: Matus Fabian --- diff --git a/resources/libraries/python/topology.py b/resources/libraries/python/topology.py index 75542ad070..7a27173d40 100644 --- a/resources/libraries/python/topology.py +++ b/resources/libraries/python/topology.py @@ -42,6 +42,8 @@ class NodeType(object): DUT = 'DUT' # Traffic Generator (this node has traffic generator on it) TG = 'TG' + # Virtual Machine (this node running on DUT node) + VM = 'VM' class NodeSubTypeTG(object):