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

This commit is contained in:
Zuul 2021-08-04 11:46:30 +00:00 committed by Gerrit Code Review
commit fb0994c2a0
2 changed files with 19 additions and 0 deletions

View File

@ -31,3 +31,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

@ -126,6 +126,24 @@
key: emc-insert-inv-prob
when: not tripleo_ovs_dpdk_emc_insertion_probablity|string
- 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