Step 1: Move vm scripts to the right place
[integration/test.git] / tools / odl-mdsal-clustering-tests / config / modules.conf
1 # This file should describe all the modules that need to be placed in a separate shard
2 # The format of the configuration is as follows
3 # {
4 #    name = "<friendly_name_of_module>"
5 #    namespace = "<the yang namespace of the module>"
6 #    shard-strategy = "module"
7 # }
8 #
9 # Note that at this time the only shard-strategy we support is module which basically
10 # will put all the data of a single module in two shards (one for config and one for
11 # operational data)
12
13 modules = [
14     {
15         name = "inventory"
16         namespace = "urn:opendaylight:inventory"
17         shard-strategy = "module"
18     },
19
20     {
21         name = "topology"
22         namespace = "urn:TBD:params:xml:ns:yang:network-topology"
23         shard-strategy = "module"
24     },
25
26     {
27         name = "toaster"
28         namespace = "http://netconfcentral.org/ns/toaster"
29         shard-strategy = "module"
30     },
31     {
32         name = "car"
33         namespace = "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:car"
34         shard-strategy = "module"
35     }
36     {
37         name = "people"
38         namespace = "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:people"
39         shard-strategy = "module"
40     }
41     
42     {
43         name = "car-purchase"
44         namespace = "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:car-purchase"
45         shard-strategy = "module"
46     }
47 ]