Step 2: Move test folder to root
[integration/test.git] / tools / clustering / cluster-deployer / templates / openflow / modules.conf.template
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 ]