Merge "Option to enable provisioning status to be sync with neutron db"
This commit is contained in:
commit
cbee9e6486
@ -276,6 +276,9 @@ octavia_task_flow_max_workers: 5
|
|||||||
# your queue is crashing (Octavia will stream events to the neutron DB)
|
# your queue is crashing (Octavia will stream events to the neutron DB)
|
||||||
octavia_event_streamer: True
|
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
|
# 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
|
# two amphora are not placed pn the same host (the most common setup of
|
||||||
# ant affinity features in Nova).
|
# ant affinity features in Nova).
|
||||||
|
@ -70,6 +70,8 @@ heartbeat_key = {{ octavia_health_hmac_key }}
|
|||||||
# queue_event_streamer,
|
# queue_event_streamer,
|
||||||
# noop_event_streamer
|
# noop_event_streamer
|
||||||
event_streamer_driver = {% if octavia_event_streamer|bool %}queue_event_streamer{% else %}noop_event_streamer{% endif %}
|
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]
|
[keystone_authtoken]
|
||||||
insecure = {{ keystone_service_internaluri_insecure | bool }}
|
insecure = {{ keystone_service_internaluri_insecure | bool }}
|
||||||
|
Loading…
Reference in New Issue
Block a user