Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [keystone_authtoken]
  2. signing_dir = /var/cache/cinder
  3. cafile = /opt/stack/data/ca-bundle.pem
  4. auth_uri = http://192.168.56.101:5000
  5. project_domain_id = default
  6. project_name = service
  7. user_domain_id = default
  8. password = password
  9. username = cinder
  10. auth_url = http://192.168.56.101:35357
  11. auth_plugin = password
  12.  
  13. [DEFAULT]
  14. glance_api_servers = http://192.168.56.101:9292
  15. osapi_volume_workers = 2
  16. logging_exception_prefix = %(color)s%(asctime)s.%(msecs)03d TRACE %(name)s %(instance)s
  17. logging_debug_format_suffix = from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d
  18. logging_default_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s
  19. logging_context_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s %(user_id)s %(project_id)s%(color)s] %(instance)s%(color)s%(message)s
  20. rpc_backend = rabbit
  21. default_volume_type = lvmdriver-1
  22. enabled_backends = lvmdriver-1
  23. os_region_name = RegionOne
  24. enable_v1_api = true
  25. periodic_interval = 60
  26. state_path = /opt/stack/data/cinder
  27. osapi_volume_extension = cinder.api.contrib.standard_extensions
  28. rootwrap_config = /etc/cinder/rootwrap.conf
  29. api_paste_config = /etc/cinder/api-paste.ini
  30. iscsi_helper = tgtadm
  31. verbose = True
  32. debug = True
  33. auth_strategy = keystone
  34. nova_catalog_admin_info = compute:nova:adminURL
  35. nova_catalog_info = compute:nova:publicURL
  36.  
  37. [database]
  38. connection = mysql://root:password@192.168.56.101/cinder?charset=utf8
  39.  
  40. [oslo_concurrency]
  41. lock_path = /opt/stack/data/cinder
  42.  
  43. [lvmdriver-1]
  44. iscsi_helper = tgtadm
  45. volume_group = stack-volumes-lvmdriver-1
  46. volume_driver = cinder.volume.drivers.lvm.LVMVolumeDriver
  47. volume_backend_name = lvmdriver-1
  48.  
  49. [oslo_messaging_rabbit]
  50. rabbit_userid = stackrabbit
  51. rabbit_password = password
  52. rabbit_hosts = 192.168.56.101
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement