summaryrefslogtreecommitdiffstats
path: root/compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini
diff options
context:
space:
mode:
authorbaigk <baiguoku@huawei.com>2015-06-11 14:13:24 +0800
committerbaigk <baiguoku@huawei.com>2015-06-16 10:40:49 +0800
commit12019717d3be5b4cfa42751cd19cbd42f82bc04a (patch)
tree66f3c45485439dbd3f26c0c77a079344536cec91 /compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini
parenteb887812da568cfb4908f6ae14449b2ceaeb5bc0 (diff)
Add openstack HA installer code with ansible for compass adapter
patch 2: add service monitor and adjust monitor timelen BGS-25 Change-Id: I4239576b3888a0a7f6b697fe7fffffb677ef7dab Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini')
-rw-r--r--compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini46
1 files changed, 46 insertions, 0 deletions
diff --git a/compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini b/compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini
new file mode 100644
index 0000000..6badf28
--- /dev/null
+++ b/compass/deploy/ansible/openstack_juno/roles/neutron-controller/templates/metadata_agent.ini
@@ -0,0 +1,46 @@
+[DEFAULT]
+# Show debugging output in log (sets DEBUG log level output)
+debug = True
+
+# The Neutron user information for accessing the Neutron API.
+auth_url = http://{{ HA_VIP }}:5000/v2.0
+auth_region = RegionOne
+# Turn off verification of the certificate for ssl
+# auth_insecure = False
+# Certificate Authority public key (CA cert) file for ssl
+# auth_ca_cert =
+admin_tenant_name = service
+admin_user = neutron
+admin_password = {{ NEUTRON_PASS }}
+
+# Network service endpoint type to pull from the keystone catalog
+# endpoint_type = adminURL
+
+# IP address used by Nova metadata server
+nova_metadata_ip = {{ HA_VIP }}
+
+# TCP Port used by Nova metadata server
+nova_metadata_port = 8775
+
+# When proxying metadata requests, Neutron signs the Instance-ID header with a
+# shared secret to prevent spoofing. You may select any string for a secret,
+# but it must match here and in the configuration used by the Nova Metadata
+# Server. NOTE: Nova uses a different key: neutron_metadata_proxy_shared_secret
+metadata_proxy_shared_secret = {{ METADATA_SECRET }}
+
+# Location of Metadata Proxy UNIX domain socket
+# metadata_proxy_socket = $state_path/metadata_proxy
+
+# Number of separate worker processes for metadata server
+# metadata_workers = 0
+
+# Number of backlog requests to configure the metadata server socket with
+# metadata_backlog = 128
+
+# URL to connect to the cache backend.
+# Example of URL using memory caching backend
+# with ttl set to 5 seconds: cache_url = memory://?default_ttl=5
+# default_ttl=0 parameter will cause cache entries to never expire.
+# Otherwise default_ttl specifies time in seconds a cache entry is valid for.
+# No cache is used in case no value is passed.
+# cache_url =