Advertisement
os_jesus

glance-api.conf

Feb 22nd, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.79 KB | None | 0 0
  1. [DEFAULT]
  2. show_image_direct_url = True
  3. bind_host = 192.168.120.3
  4. bind_port = 9292
  5. workers = 8
  6. backlog = 4096
  7. image_cache_dir = /var/lib/glance/image-cache
  8. registry_host = 192.168.120.2
  9. registry_port = 9191
  10. auth_region = RegionOne
  11. registry_client_protocol = http
  12. scrubber_datadir = /var/lib/glance/scrubber
  13. scrub_time = 43200
  14. delayed_delete = False
  15. debug = True
  16. verbose = True
  17. log_file = /var/log/glance/api.log
  18. log_dir = /var/log/glance
  19. use_syslog = True
  20. use_syslog_rfc_format = True
  21. syslog_log_facility = LOG_LOCAL2
  22. use_stderr = False
  23. notification_driver =messaging
  24. os_region_name=RegionOne
  25. amqp_durable_queues=False
  26. [database]
  27. connection = mysql://glance:abc123@192.168.120.2/glance?read_timeout=60
  28. idle_timeout = 3600
  29. max_pool_size = 30
  30. max_retries = -1
  31. max_overflow = 40
  32. [glance_store]
  33. stores = glance.store.rbd.Store,glance.store.http.Store
  34. default_store = rbd
  35. rbd_store_chunk_size = 8
  36. rbd_store_pool = images
  37. rbd_store_user = images
  38. rbd_store_ceph_conf = /etc/ceph/ceph.conf
  39. rados_connect_timeout = 30
  40. os_region_name = RegionOne
  41. [image_format]
  42. [matchmaker_redis]
  43. [matchmaker_ring]
  44. [oslo_concurrency]
  45. [oslo_messaging_amqp]
  46. [oslo_messaging_qpid]
  47. [oslo_messaging_rabbit]
  48. rabbit_hosts = 192.168.120.3:5673, 192.168.120.8:5673, 192.168.120.4:5673
  49. rabbit_use_ssl = False
  50. rabbit_userid = nova
  51. rabbit_password = abc123
  52. rabbit_virtual_host = /
  53. rabbit_ha_queues = True
  54. rabbit_notification_exchange=glance
  55. rabbit_notification_topic=notifications
  56. [oslo_policy]
  57. [paste_deploy]
  58. flavor = keystone
  59. [store_type_location_strategy]
  60. [task]
  61. [keystone_authtoken]
  62. auth_port=35357
  63. token_cache_time=-1
  64. auth_host=192.168.120.2
  65. admin_password=123abc
  66. admin_tenant_name=services
  67. auth_protocol=http
  68. auth_uri=http://192.168.120.2:5000/
  69. admin_user=glance
  70. signing_dir=/tmp/keystone-signing-glance
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement