Option to enable provisioning status to be sync with neutron db

Change-Id: Ie6df85deea079f3303f0d72989f05e14b037ed7f
This commit is contained in:
Santhosh Fernandes 2017-08-10 22:54:15 +05:30
parent b1fe866f42
commit 954ba63a31
2 changed files with 5 additions and 0 deletions

View File

@ -273,6 +273,9 @@ octavia_task_flow_max_workers: 5
# your queue is crashing (Octavia will stream events to the neutron DB)
octavia_event_streamer: True
# Enable provisioning status sync with neutron db
octavia_sync_provisioning_status: False
# this controls if Octavia should add an anti-affinity hint to make sure
# two amphora are not placed pn the same host (the most common setup of
# ant affinity features in Nova).

View File

@ -55,6 +55,8 @@ heartbeat_key = {{ octavia_health_hmac_key }}
# queue_event_streamer,
# noop_event_streamer
event_streamer_driver = {% if octavia_event_streamer|bool %}queue_event_streamer{% else %}noop_event_streamer{% endif %}
# Enable provisioning status sync with neutron db
sync_provisioning_status = {{ octavia_sync_provisioning_status }}
[keystone_authtoken]
insecure = {{ keystone_service_internaluri_insecure | bool }}