summaryrefslogtreecommitdiff
path: root/osconf/cinder/cinder.conf-storage
diff options
context:
space:
mode:
Diffstat (limited to 'osconf/cinder/cinder.conf-storage')
-rw-r--r--osconf/cinder/cinder.conf-storage29
1 files changed, 29 insertions, 0 deletions
diff --git a/osconf/cinder/cinder.conf-storage b/osconf/cinder/cinder.conf-storage
new file mode 100644
index 00000000..5ee0fb9e
--- /dev/null
+++ b/osconf/cinder/cinder.conf-storage
@@ -0,0 +1,29 @@
+[DEFAULT]
+
+use_syslog = True
+lock_path=/var/lock/cinder
+state_path = /var/lib/cinder
+rootwrap_config=/etc/cinder/rootwrap.conf
+api_paste_config=api-paste.ini
+
+rabbit_host={{ RABBITMQ_HOST }}
+rabbit_port={{ RABBITMQ_PORT }}
+rabbit_userid={{ RABBITMQ_USER }}
+rabbit_password={{ RABBITMQ_PASSWORD }}
+rpc_backend=rabbit
+
+auth_strategy=keystone
+
+glance_host={{ CONTROLLER_HOST_ADDRESS }}
+
+[database]
+connection=postgresql://{{ CINDER_DB_USER }}:{{ CINDER_DB_PASSWORD }}@{{ CONTROLLER_HOST_ADDRESS }}/cinder
+
+[keystone_authtoken]
+identity_uri = http://{{ CONTROLLER_HOST_ADDRESS }}:35357
+auth_uri = http://{{ CONTROLLER_HOST_ADDRESS }}:5000/v2.0
+admin_user={{ CINDER_USER }}
+admin_password={{ CINDER_PASSWORD }}
+admin_tenant_name=service
+
+