Skip to content
Snippets Groups Projects
Commit 74f64a19 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "ovn: add ovn-monitor-all variable"

parents 2b88144c 20355edb
No related branches found
No related tags found
No related merge requests found
......@@ -36,3 +36,5 @@ ovn_base_mac: "52:54:00"
ovn_remote_probe_interval: "60000"
# Configure OVN openflow interval in s
ovn_openflow_probe_interval: "60"
# Configure OVN monitor-all in boolean
ovn_monitor_all: "false"
......@@ -33,6 +33,7 @@
- { name: ovn-remote, value: "{{ ovn_sb_connection }}" }
- { name: ovn-remote-probe-interval, value: "{{ ovn_remote_probe_interval }}" }
- { name: ovn-openflow-probe-interval, value: "{{ ovn_openflow_probe_interval }}" }
- { name: ovn-monitor-all, value: "{{ ovn_monitor_all | bool }}" }
- { name: ovn-bridge-mappings, value: "{{ ovn_mappings }}", state: "{{ 'present' if (inventory_hostname in groups['ovn-controller-network'] or computes_need_external_bridge | bool) else 'absent' }}" }
- { name: ovn-chassis-mac-mappings, value: "{{ ovn_macs }}", state: "{{ 'present' if inventory_hostname in groups['ovn-controller-compute'] else 'absent' }}" }
- { name: ovn-cms-options, value: "{{ ovn_cms_opts }}", state: "{{ 'present' if ovn_cms_opts != '' else 'absent' }}" }
......
---
features:
- |
Adds ``ovn-monitor-all`` variable. A boolean value that tells if
ovn-controller should unconditionally monitor all records in OVS
databases.
Setting ``ovn-monitor-all`` variable to 'true' will remove some CPU
load from OVN SouthBound DB but will effect with more updates
comming to ovn-controller. Might be helpfull in large deployments
with many compute hosts.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment