c9407d186b
This commit makes the following changes to install/ubuntu-dev.rst: - removes copying of all *.sample files since we end up overwriting contents of several files anyway - removes a number of inline comments to give clear separation between information and commands - adds a simple pools.yaml sample which should work out of the box on most development deploys - this file uses a name of "default", which means it will not create a new pool but rather use the existing one (helpful as designate.conf already references the existing pool's ID) - uses a target of type "bind9", which matches the backend in designate.conf - uses an rncd_key_file that exists in /etc/bind - adds the necessary section on how to import it into Designate - adds some additional information about activating virtualenv before attempting to start services in the virtualenv - prefixes any command that requires root privileges with "sudo" - updates examples/basic-config-sample.conf by removing reference to defunct 'Pool Configuration' section Please note that I am inexperienced with Designate so some of my assumptions here may be incorrect. Change-Id: I8e92a9c65e68a811696f2c77820a6d00ce576bb2
130 lines
3.1 KiB
Plaintext
130 lines
3.1 KiB
Plaintext
[DEFAULT]
|
|
########################
|
|
## General Configuration
|
|
########################
|
|
# Show more verbose log output (sets INFO log level output)
|
|
verbose = True
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = True
|
|
|
|
# Top-level directory for maintaining designate's state.
|
|
state_path = $pybasedir/state
|
|
|
|
# Log directory
|
|
logdir = $pybasedir/log
|
|
|
|
# Driver used for issuing notifications
|
|
notification_driver = messaging
|
|
|
|
# Use "sudo designate-rootwrap /etc/designate/rootwrap.conf" to use the real
|
|
# root filter facility.
|
|
# Change to "sudo" to skip the filtering and just run the command directly
|
|
# root_helper = sudo
|
|
|
|
# Supported record types
|
|
#supported_record_type = A, AAAA, CNAME, MX, SRV, TXT, SPF, NS, PTR, SSHFP, SOA
|
|
|
|
# RabbitMQ Config
|
|
rabbit_userid = designate
|
|
rabbit_password = designate
|
|
#rabbit_virtual_host = /
|
|
#rabbit_use_ssl = False
|
|
#rabbit_hosts = 127.0.0.1:5672
|
|
|
|
########################
|
|
## Service Configuration
|
|
########################
|
|
#-----------------------
|
|
# Central Service
|
|
#-----------------------
|
|
[service:central]
|
|
# Maximum domain name length
|
|
#max_domain_name_len = 255
|
|
|
|
# Maximum record name length
|
|
#max_record_name_len = 255
|
|
|
|
#-----------------------
|
|
# API Service
|
|
#-----------------------
|
|
[service:api]
|
|
# Address to bind the API server
|
|
api_host = 0.0.0.0
|
|
|
|
# Port to bind the API server
|
|
api_port = 9001
|
|
|
|
# Authentication strategy to use - can be either "noauth" or "keystone"
|
|
auth_strategy = noauth
|
|
|
|
# Enable API Version 1
|
|
enable_api_v1 = True
|
|
|
|
# Enabled API Version 1 extensions
|
|
enabled_extensions_v1 = diagnostics, quotas, reports, sync, touch
|
|
|
|
# Enable API Version 2
|
|
enable_api_v2 = True
|
|
|
|
# Enabled API Version 2 extensions
|
|
enabled_extensions_v2 = quotas, reports
|
|
|
|
#-----------------------
|
|
# mDNS Service
|
|
#-----------------------
|
|
[service:mdns]
|
|
#workers = None
|
|
#host = 0.0.0.0
|
|
#port = 5354
|
|
#tcp_backlog = 100
|
|
|
|
#-----------------------
|
|
# Pool Manager Service
|
|
#-----------------------
|
|
[service:pool_manager]
|
|
pool_id = 794ccc2c-d751-44fe-b57f-8894c9f5c842
|
|
#workers = None
|
|
#threshold_percentage = 100
|
|
#poll_timeout = 30
|
|
#poll_retry_interval = 2
|
|
#poll_max_retries = 3
|
|
#poll_delay = 1
|
|
#periodic_recovery_interval = 120
|
|
#periodic_sync_interval = 300
|
|
#periodic_sync_seconds = None
|
|
#cache_driver = sqlalchemy
|
|
|
|
###################################
|
|
## Pool Manager Cache Configuration
|
|
###################################
|
|
#-----------------------
|
|
# SQLAlchemy Pool Manager Cache
|
|
#-----------------------
|
|
[pool_manager_cache:sqlalchemy]
|
|
connection = mysql+pymysql://root:password@127.0.0.1/designate_pool_manager?charset=utf8
|
|
#connection_debug = 100
|
|
#connection_trace = False
|
|
#sqlite_synchronous = True
|
|
#idle_timeout = 3600
|
|
#max_retries = 10
|
|
#retry_interval = 10
|
|
|
|
########################
|
|
## Storage Configuration
|
|
########################
|
|
#-----------------------
|
|
# SQLAlchemy Storage
|
|
#-----------------------
|
|
[storage:sqlalchemy]
|
|
# Database connection string - to configure options for a given implementation
|
|
# like sqlalchemy or other see below
|
|
connection = mysql+pymysql://root:password@127.0.0.1/designate?charset=utf8
|
|
#connection_debug = 100
|
|
#connection_trace = True
|
|
#sqlite_synchronous = True
|
|
#idle_timeout = 3600
|
|
#max_retries = 10
|
|
#retry_interval = 10
|
|
|