6badf287737532d392cdbc0cd45a4588ef3b688c
[genesis.git] / compass / deploy / ansible / roles / neutron-controller / templates / metadata_agent.ini
1 [DEFAULT]
2 # Show debugging output in log (sets DEBUG log level output)
3 debug = True
4
5 # The Neutron user information for accessing the Neutron API.
6 auth_url = http://{{ HA_VIP }}:5000/v2.0
7 auth_region = RegionOne
8 # Turn off verification of the certificate for ssl
9 # auth_insecure = False
10 # Certificate Authority public key (CA cert) file for ssl
11 # auth_ca_cert =
12 admin_tenant_name = service
13 admin_user = neutron
14 admin_password = {{ NEUTRON_PASS }}
15
16 # Network service endpoint type to pull from the keystone catalog
17 # endpoint_type = adminURL
18
19 # IP address used by Nova metadata server
20 nova_metadata_ip = {{ HA_VIP }}
21
22 # TCP Port used by Nova metadata server
23 nova_metadata_port = 8775
24
25 # When proxying metadata requests, Neutron signs the Instance-ID header with a
26 # shared secret to prevent spoofing.  You may select any string for a secret,
27 # but it must match here and in the configuration used by the Nova Metadata
28 # Server. NOTE: Nova uses a different key: neutron_metadata_proxy_shared_secret
29 metadata_proxy_shared_secret = {{ METADATA_SECRET }}
30
31 # Location of Metadata Proxy UNIX domain socket
32 # metadata_proxy_socket = $state_path/metadata_proxy
33
34 # Number of separate worker processes for metadata server
35 # metadata_workers = 0
36
37 # Number of backlog requests to configure the metadata server socket with
38 # metadata_backlog = 128
39
40 # URL to connect to the cache backend.
41 # Example of URL using memory caching backend
42 # with ttl set to 5 seconds: cache_url = memory://?default_ttl=5
43 # default_ttl=0 parameter will cause cache entries to never expire.
44 # Otherwise default_ttl specifies time in seconds a cache entry is valid for.
45 # No cache is used in case no value is passed.
46 # cache_url =