diff options
-rw-r--r-- | sfc/lib/topology_shuffler.py | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/sfc/lib/topology_shuffler.py b/sfc/lib/topology_shuffler.py index 1a97e270..24c8f875 100644 --- a/sfc/lib/topology_shuffler.py +++ b/sfc/lib/topology_shuffler.py @@ -15,17 +15,17 @@ TOPOLOGIES = [ ''' }, { - 'id': 'CLIENT_SERVER_SAME_HOST_SPLIT_VNF', + 'id': 'CLIENT_VNF_SAME_HOST', 'description': ''' - Client and server are on the same host. - The VNFs are split between hosts Round Robin. + Client instance and vnfs are on the same + compute host. Server instance is on a different host ''' }, { - 'id': 'CLIENT_VNF_SAME_HOST', + 'id': 'SERVER_VNF_SAME_HOST', 'description': ''' - Client instance and vnfs are on the same - compute host. Server instance is on a different host + Server instance and vnfs are on the same + compute host. Client instance is on a different host ''' }, { @@ -36,17 +36,17 @@ TOPOLOGIES = [ ''' }, { - 'id': 'CLIENT_SERVER_SAME_HOST', + 'id': 'CLIENT_SERVER_SAME_HOST_SPLIT_VNF', 'description': ''' - Client instance and server instance are on the same - compute host. All VNFs are on a different host. + Client and server are on the same host. + The VNFs are split between hosts Round Robin. ''' }, { - 'id': 'SERVER_VNF_SAME_HOST', + 'id': 'CLIENT_SERVER_SAME_HOST', 'description': ''' - Server instance and vnfs are on the same - compute host. Client instance is on a different host + Client instance and server instance are on the same + compute host. All VNFs are on a different host. ''' } ] @@ -59,9 +59,8 @@ DEFAULT_TOPO = { } WORKING_TOPOLOGIES = ['CLIENT_SERVER_VNF_SAME_HOST', - 'CLIENT_SERVER_SAME_HOST_SPLIT_VNF', 'CLIENT_VNF_SAME_HOST', - 'CLIENT_SERVER_DIFFERENT_HOST_SPLIT_VNF'] + 'SERVER_VNF_SAME_HOST'] def get_seed(): |