summaryrefslogtreecommitdiff
path: root/openstack/etc/nova/cells.json
diff options
context:
space:
mode:
authorMark Doffman <mark.doffman@codethink.co.uk>2014-09-03 19:12:50 +0000
committerMark Doffman <mark.doffman@codethink.co.uk>2014-10-02 02:46:23 +0000
commit0f0bb39104d35cfcf2a01eeb1866927945bcfa8a (patch)
tree98338062b2ac0101c95c94a7299eedff538fc614 /openstack/etc/nova/cells.json
parentf1da7ace54bed18c5c7eac5242ec84d4ca81c55d (diff)
downloaddefinitions-0f0bb39104d35cfcf2a01eeb1866927945bcfa8a.tar.gz
Openstack services strata and configuration.baserock/markdoffman/openstack
Add a stratum for openstack services that includes all the core openstack service code and daemons. Add configuration files for keystone, glance, nova and nova-compute. Add a system and cluster definition that builds an image that runs keystone, glance and nova.
Diffstat (limited to 'openstack/etc/nova/cells.json')
-rw-r--r--openstack/etc/nova/cells.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/openstack/etc/nova/cells.json b/openstack/etc/nova/cells.json
new file mode 100644
index 00000000..cc74930d
--- /dev/null
+++ b/openstack/etc/nova/cells.json
@@ -0,0 +1,26 @@
+{
+ "parent": {
+ "name": "parent",
+ "api_url": "http://api.example.com:8774",
+ "transport_url": "rabbit://rabbit.example.com",
+ "weight_offset": 0.0,
+ "weight_scale": 1.0,
+ "is_parent": true
+ },
+ "cell1": {
+ "name": "cell1",
+ "api_url": "http://api.example.com:8774",
+ "transport_url": "rabbit://rabbit1.example.com",
+ "weight_offset": 0.0,
+ "weight_scale": 1.0,
+ "is_parent": false
+ },
+ "cell2": {
+ "name": "cell2",
+ "api_url": "http://api.example.com:8774",
+ "transport_url": "rabbit://rabbit2.example.com",
+ "weight_offset": 0.0,
+ "weight_scale": 1.0,
+ "is_parent": false
+ }
+}