Guest User

config

a guest
Nov 8th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. [DEFAULT]
  2. verbose = True
  3. log_dir = /var/log/cloudkitty
  4. host = controller1
  5.  
  6. [collect]
  7.  
  8. #
  9. # From cloudkitty.common.config
  10. #
  11.  
  12. # Data collector. (string value)
  13. collector = ceilometer
  14.  
  15. # Number of samples to collect per call. (integer value)
  16. #window = 1800
  17. window = 300
  18.  
  19. # Rating period in seconds. (integer value)
  20. #period = 3600
  21. period = 300
  22.  
  23. # Wait for N periods before collecting new data. (integer value)
  24. wait_periods = 2
  25.  
  26. # Services to monitor. (list value)
  27. services = compute,image,volume,network.bw.in,network.bw.out,network.floating
  28.  
  29. [oslo_messaging_rabbit]
  30.  
  31. rabbit_userid = openstackmq
  32. rabbit_password = **********
  33. rabbit_virtual_host = /openstack
  34.  
  35. rabbit_hosts=10.23.0.24:5672,10.23.0.25:5672,10.23.0.41:5672
  36. #### (ListOpt) RabbitMQ HA cluster host:port pairs
  37.  
  38. # rabbit_durable_queues=false
  39. #### (BoolOpt) use durable queues in RabbitMQ
  40.  
  41. rabbit_ha_queues=True
  42. #### (BoolOpt) use H/A queues in RabbitMQ (x-ha-policy: all).You need to
  43. #### wipe RabbitMQ database when changing this option.
  44.  
  45. # Number of seconds after which the Rabbit broker is considered down if heartbeat's keep-alive fails (0 disable the heartbeat)
  46. heartbeat_timeout_threshold=60
  47.  
  48. # How often times during the heartbeat_timeout_threshold we check the heartbeat
  49. heartbeat_rate=3
  50.  
  51. rabbit_max_retries=
  52.  
  53. #-----------------------
  54. # Keystone Middleware
  55. #-----------------------
  56.  
  57. [keystone_authtoken]
  58. auth_uri = https://*******:5000/v3
  59. region = stage2
  60. #identity_uri = https://********:35357/
  61. identity_uri = https://********t:35357/v3
  62. admin_tenant_name = service
  63. admin_user = cloudkitty
  64. admin_password = **********
  65. insecure = true
  66.  
  67. #updated
  68. #auth_version = v3.0
  69. auth_type = v3password
  70. project_name = service
  71. user_domain_id = default
  72. project_domain_id = default
  73.  
  74. ##Added for testing
  75. auth_protocol = http
  76. username = cloudkitty
  77. password = **********
  78. user_domain_name = Default
  79. project_domain_name = Default
  80. debug = True
  81.  
  82.  
  83. [database]
  84. connection = mysql://cloudkitty:********@10.22.0.254:3306/cloudkitty?charset=utf8
  85.  
  86. [keystone_fetcher]
  87. keystone_version = 3
  88. username = admin
  89. password = *********
  90. domain_id = default
  91. auth_url = https://*********:5000/v3
  92. region = *****
  93. #auth_version = v3.0
  94. auth_type = v3password
  95. user_domain_id = default
  96. project_domain_id = default
  97. insecure = true
  98.  
  99. [state]
  100.  
  101. #
  102. # From cloudkitty.common.config
  103. #
  104.  
  105. # Backend for the state manager. (string value)
  106. #backend = cloudkitty.backend.file.FileBackend
  107.  
  108. # Storage directory for the file state backend. (string value)
  109. #basepath = /var/lib/cloudkitty/states/
  110.  
  111. [tenant_fetcher]
  112. #
  113. # From cloudkitty.common.config
  114. #
  115. # Driver used to fetch tenant list. (string value)
  116. backend = keystone
  117.  
  118. # For automating the version
  119. [extra_conf]
  120. nova_version=2
  121. cloudkitty_version=1
  122. log_file=/var/log/cloudkitty/automated.log
  123.  
  124. [ceilometer_collector]
  125.  
  126. keystone_version = 3
  127. username = admin
  128. password = ********
  129. domain_id = default
  130. auth_url = https://********:5000/v3
  131. region = stage2
  132. #auth_version = v3.0
  133. auth_type = v3password
  134. user_domain_id = default
  135. project_domain_id = default
  136. insecure = true
Add Comment
Please, Sign In to add comment