Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. # Ansible managed
  2.  
  3. [DEFAULT]
  4. # Disable stderr logging
  5. use_stderr = False
  6. debug = False
  7. fatal_deprecations = False
  8. my_ip = 10.0.100.84
  9.  
  10. osapi_volume_workers = 10
  11.  
  12. rootwrap_config = /etc/cinder/rootwrap.conf
  13. api_paste_config = /etc/cinder/api-paste.ini
  14. auth_strategy = keystone
  15.  
  16. ## Cinder API's enabled
  17. enable_v1_api = True
  18. enable_v2_api = True
  19. enable_v3_api = True
  20.  
  21.  
  22. ## RabbitMQ RPC
  23. executor_thread_pool_size = 64
  24. rpc_response_timeout = 60
  25.  
  26. transport_url = rabbit://cinder:d47c3ce844bbba91bd7a6968@10.0.100.162:5671,cinder:d47c3ce844bbba91bd7a6968@10.0.100.217:5671,cinder:d47c3ce844bbba91bd7a6968@10.0.100.71:5671//cinder
  27. ## Quota
  28. quota_volumes = 10
  29. quota_snapshots = 10
  30. quota_consistencygroups = 10
  31. quota_gigabytes = 1000
  32. quota_backups = 10
  33. quota_backup_gigabytes = 1000
  34.  
  35. ## Nova
  36. nova_catalog_info = compute:nova:internalURL
  37. nova_catalog_admin_info = compute:nova:adminURL
  38.  
  39. os_region_name = RegionOne
  40.  
  41. ## Glance
  42. glance_api_servers = http://10.0.100.9:9292
  43. glance_num_retries = 0
  44.  
  45. volume_clear = zero
  46. volume_clear_size = 0
  47. volume_clear_ionice = -c3
  48. volume_name_template = volume-%s
  49.  
  50. storage_availability_zone = nova
  51. default_availability_zone = nova
  52.  
  53. iscsi_helper = tgtadm
  54. iscsi_iotype = fileio
  55. iscsi_ip_address = 10.0.101.211
  56. iscsi_num_targets = 100
  57. iscsi_port = 3260
  58.  
  59. client_socket_timeout = 900
  60.  
  61.  
  62. enabled_backends=RBD
  63. # All given backend(s)
  64. [RBD]
  65. rbd_ceph_conf=/etc/ceph/ceph.conf
  66. rbd_pool=volumes
  67. rbd_secret_uuid=f8a40164-e09b-4d6b-99cf-44098b8f8e13
  68. rbd_store_chunk_size=8
  69. rbd_user=cinder
  70. report_discard_supported=True
  71. volume_backend_name=rbddriver
  72. volume_driver=cinder.volume.drivers.rbd.RBDDriver
  73.  
  74.  
  75. [database]
  76. connection = mysql+pymysql://cinder:223d82c35505f6153d0167e4b9659d11e0e8cacf6dd6dae80f@10.0.100.9/cinder?charset=utf8
  77.  
  78. [oslo_messaging_rabbit]
  79. ssl = True
  80.  
  81. [oslo_messaging_notifications]
  82. driver = messagingv2
  83. transport_url = rabbit://cinder:d47c3ce844bbba91bd7a6968@10.0.100.162:5671,cinder:d47c3ce844bbba91bd7a6968@10.0.100.217:5671,cinder:d47c3ce844bbba91bd7a6968@10.0.100.71:5671//cinder
  84. [oslo_concurrency]
  85. lock_path = /var/lock/cinder
  86.  
  87. [profiler]
  88. enabled = False
  89. trace_sqlalchemy = False
  90. hmac_keys = 016713939f2da7c4bbdaa666ecfdff0e
  91.  
  92.  
  93. [keystone_authtoken]
  94. insecure = False
  95. auth_type = password
  96. auth_url = http://10.0.100.9:35357/v3
  97. auth_uri = http://10.0.100.9:5000
  98. project_domain_id = default
  99. user_domain_id = default
  100. project_name = service
  101. username = cinder
  102. password = f32af17aba09fd6c82e6ab1fc60adfff16f89115e8c
  103. region_name = RegionOne
  104.  
  105. memcached_servers = 10.0.100.182:11211,10.0.100.149:11211,10.0.100.106:11211
  106.  
  107. token_cache_time = 300
  108.  
  109. # if your memcached server is shared, use these settings to avoid cache poisoning
  110. memcache_security_strategy = ENCRYPT
  111. memcache_secret_key = 1e72f7cca0787da391728a32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement