hs-test: abstract away topology from test cases
[vpp.git] / extras / hs-test / topo.go
index f117614..1d501e8 100755 (executable)
@@ -10,9 +10,12 @@ import (
 )
 
 type NetDevConfig map[string]interface{}
+type ContainerConfig map[string]interface{}
 
 type YamlTopology struct {
        Devices []NetDevConfig `yaml:"devices"`
+       Containers []ContainerConfig `yaml:"containers"`
+       Volumes []string `yaml:"volumes"`
 }
 
 func AddAddress(device, address, ns string) error {