Advertisement
tlbr

Untitled

Aug 4th, 2017
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.79 KB | None | 0 0
  1. root@ctl01:~# grep -Pv '^(#|$)' /etc/designate/designate.conf
  2. [DEFAULT]
  3. supported_record_type = A, CNAME, SRV, TXT
  4. default_ttl = 120
  5. default_soa_refresh_min = 300
  6. default_soa_refresh_max = 300
  7. default_soa_retry = 300
  8. default_soa_expire = 2600000
  9. default_soa_minimum = 120
  10. verbose = True
  11. debug = False
  12. [oslo_messaging_rabbit]
  13. rabbit_userid = openstack
  14. rabbit_password = workshop
  15. rabbit_virtual_host = /openstack
  16. rabbit_hosts = 172.16.10.101:5672,172.16.10.102:5672,172.16.10.103:5672
  17. [service:central]
  18. min_ttl = 120
  19. default_pool_id = '794ccc2c-d751-44fe-b57f-8894c9f5c842'
  20. [service:api]
  21. api_base_uri = http://172.16.10.101:9001/
  22. listen = 172.16.10.101:9001
  23. auth_strategy = keystone
  24. enable_api_v1 = True
  25. enabled_extensions_v1 = diagnostics, quotas, reports, sync, touch
  26. enable_api_v2 = True
  27. enabled_extensions_v2 = quotas, reports
  28. [keystone_authtoken]
  29. auth_host = 172.16.10.254
  30. auth_port = 35357
  31. auth_protocol = http
  32. admin_tenant_name = service
  33. admin_user = designate
  34. admin_password = workshop
  35. [cors]
  36. [cors.subdomain]
  37. [service:sink]
  38. enabled_notification_handlers = nova_fixed, neutron_floatingip
  39. [service:mdns]
  40. listen = 0.0.0.0:53
  41. [service:agent]
  42. [service:producer]
  43. enabled_tasks = None
  44. export_synchronous = True
  45. [producer_task:domain_purge]
  46. [producer_task:delayed_notify]
  47. interval = 5  
  48. [producer_task:worker_periodic_recovery]
  49. interval = 120
  50. [service:pool_manager]
  51. pool_id = 794ccc2c-d751-44fe-b57f-8894c9f5c842
  52. workers = 2  
  53. threads = 1000
  54. poll_timeout = 30
  55. poll_retry_interval = 15
  56. poll_max_retries = 10
  57. poll_delay = 5
  58. enable_recovery_timer = True
  59. periodic_recovery_interval = 120
  60. enable_sync_timer = True
  61. periodic_sync_interval = 120
  62. periodic_sync_seconds =
  63. periodic_sync_max_attempts = 3
  64. periodic_sync_retry_interval = 30
  65. [service:worker]
  66. enabled = True
  67. workers = 2  
  68. threads = 1000
  69. threshold_percentage = 100
  70. poll_timeout = 30
  71. poll_retry_interval = 15
  72. poll_max_retries = 10
  73. poll_delay = 5
  74. notify = True
  75. [pool_manager_cache:sqlalchemy]
  76. connection = mysql://designate:workshop@172.16.10.254/designate_pool_manager
  77. [pool_manager_cache:memcache]
  78. [network_api:neutron]
  79. [storage:sqlalchemy]
  80. connection = mysql://designate:workshop@172.16.10.254/designate
  81. [handler:nova_fixed]
  82. zone_id = 5186883b-91fb-4891-bd49-e6769234a8fc
  83. notification_topics = notifications
  84. control_exchange = 'nova'
  85. formatv4 = '%(hostname)s.%(zone)s'
  86. formatv6 = '%(hostname)s.%(zone)s'
  87. [handler:neutron_floatingip]
  88. zone_id = 5186883b-91fb-4891-bd49-e6769234a8fc
  89. notification_topics = notifications
  90. control_exchange = 'neutron'
  91. formatv4 = '%(hostname)s.%(zone)s'
  92. formatv6 = '%(hostname)s.%(zone)s'
  93. [backend:agent:bind9]
  94. [backend:agent:knot2]
  95. [backend:agent:djbdns]
  96. [backend:agent:denominator]
  97. [backend:agent:gdnsd]
  98. [backend:agent:msdns]
  99. [oslo_concurrency]
  100. [coordination]
  101. [monasca:statsd]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement