Advertisement
Guest User

Untitled

a guest
Jul 18th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. [DEFAULT]
  2. logging_exception_prefix = %(color)s%(asctime)s.%(msecs)03d TRACE %(name)s %(instance)s
  3. logging_debug_format_suffix = from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d
  4. logging_default_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s
  5. logging_context_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_name)s%(color)s] %(instance)s%(color)s%(message)s
  6. state_path = /opt/stack/data/magnum
  7. debug = True
  8.  
  9. [oslo_messaging_rabbit]
  10. rabbit_host = 192.168.0.13
  11. rabbit_password = password
  12. rabbit_userid = stackrabbit
  13.  
  14. [database]
  15. connection = mysql+pymysql://root:password@127.0.0.1/magnum?charset=utf8
  16.  
  17. [api]
  18. port = 9511
  19. host = 192.168.0.13
  20.  
  21. [oslo_policy]
  22. policy_file = /etc/magnum/policy.json
  23.  
  24. [keystone_auth]
  25. auth_url = http://192.168.0.13/identity/v3
  26. user_domain_id = default
  27. project_domain_id = default
  28. project_name = service
  29. password = password
  30. username = magnum
  31. auth_type = password
  32.  
  33. [keystone_authtoken]
  34. auth_version = v3
  35. memcached_servers = 192.168.0.13:11211
  36. signing_dir = /var/cache/magnum
  37. cafile = /opt/stack/data/ca-bundle.pem
  38. auth_uri = http://192.168.0.13:5000/v3
  39. project_domain_name = Default
  40. project_name = service
  41. user_domain_name = Default
  42. password = password
  43. username = magnum
  44. auth_url = http://192.168.0.13/identity_v2_admin
  45. auth_type = password
  46. admin_tenant_name = service
  47. admin_password = password
  48. admin_user = magnum
  49.  
  50. [oslo_concurrency]
  51. lock_path = /opt/stack/data/magnum
  52.  
  53. [certificates]
  54. cert_manager_type = barbican
  55.  
  56. [trust]
  57. trustee_domain_admin_password = secret
  58. trustee_domain_admin_name = trustee_domain_admin
  59. trustee_domain_name = magnum
  60.  
  61. [cinder_client]
  62. region_name = RegionOne
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement