~juju-deployers/juju-deployer/darwin

« back to all changes in this revision

Viewing changes to deployer/tests/test_data/openstack/openstack_base.cfg

  • Committer: Adam Gandelman
  • Date: 2013-09-03 20:44:14 UTC
  • mfrom: (114 darwin)
  • mto: This revision was merged to the branch mainline in revision 119.
  • Revision ID: adamg@canonical.com-20130903204414-xsqqz2gp83dp5d2o
MergeĀ lp:juju-deployer/darwin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
 
 
3
"grizzly-base": {
 
4
    "inherits": ["openstack-base"]
 
5
},
 
6
 
 
7
"grizzly-quantum": {
 
8
    "inherits": ["quantum-base", "grizzly-base"]
 
9
},
 
10
 
 
11
"quantum-base": {
 
12
    "services": {
 
13
        "quantum-gateway": {
 
14
            "branch": "lp:charms/quantum-gateway",
 
15
        },
 
16
        "nova-cloud-controller": {
 
17
            "options": {
 
18
                "network-manager": "Quantum",
 
19
            },
 
20
        },
 
21
    },
 
22
    "relations": {
 
23
        "quantum-gateway": {
 
24
            "weight": 95,
 
25
            "consumes": ["mysql", "nova-cloud-controller"]
 
26
        }
 
27
    }
 
28
},
 
29
 
 
30
"openstack-base": {
 
31
    "services": {
 
32
        "mysql": {
 
33
            "branch": "lp:charms/mysql"
 
34
        },
 
35
        "nova-cloud-controller": {
 
36
            "branch": "lp:charms/nova-cloud-controller",
 
37
            "options": {
 
38
                "network-manager": "FlatDHCPManager",
 
39
                "openstack-origin": "distro"
 
40
            }
 
41
        },
 
42
    },
 
43
    "relations": {
 
44
        "nova-cloud-controller": {
 
45
            "weight": 90,
 
46
            "consumes": ["mysql"]
 
47
        }
 
48
    }
 
49
}
 
50
 
 
51
}