Merge "Configure vhost-postcopy-support" into stable/victoria

This commit is contained in:
Zuul 2021-08-03 02:35:06 +00:00 committed by Gerrit Code Review
commit 9e27d90611
2 changed files with 19 additions and 0 deletions

View File

@ -32,3 +32,4 @@ tripleo_ovs_dpdk_pmd_auto_lb: false
tripleo_ovs_dpdk_pmd_load_threshold: ""
tripleo_ovs_dpdk_pmd_improvement_threshold: ""
tripleo_ovs_dpdk_pmd_rebal_interval: ""
tripleo_ovs_dpdk_vhost_postcopy_support: false

View File

@ -144,6 +144,24 @@
key: userspace-tso-enable
when: not tripleo_ovs_dpdk_enable_tso|bool
- name: Enable vhost-postcopy-support
openvswitch_db:
table: open_vswitch
record: .
col: other_config
key: vhost-postcopy-support
value: "{{ tripleo_ovs_dpdk_vhost_postcopy_support }}"
when: tripleo_ovs_dpdk_vhost_postcopy_support|bool
- name: Disable vhost-postcopy-support
openvswitch_db:
state: absent
table: open_vswitch
record: .
col: other_config
key: vhost-postcopy-support
when: not tripleo_ovs_dpdk_vhost_postcopy_support|bool
- name: Enable DPDK OVS PMD Auto Load Balance
openvswitch_db:
table: open_vswitch