We should not be using deprecated config options here, so lets set
fatal_deprecations=True to make sure.
Stop using deprecated LibvirtHybridOVSBridgeDriver
Change-Id: I0a43780270d092a42ede6c0667343f0d02b3aa67
| ... | ... |
@@ -73,13 +73,7 @@ function _neutron_ovs_base_configure_l3_agent() {
|
| 73 | 73 |
} |
| 74 | 74 |
|
| 75 | 75 |
function _neutron_ovs_base_configure_nova_vif_driver() {
|
| 76 |
- # The hybrid VIF driver needs to be specified when Neutron Security Group |
|
| 77 |
- # is enabled (until vif_security attributes are supported in VIF extension) |
|
| 78 |
- if [[ "$Q_USE_SECGROUP" == "True" ]]; then |
|
| 79 |
- NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver"}
|
|
| 80 |
- else |
|
| 81 |
- NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"}
|
|
| 82 |
- fi |
|
| 76 |
+ NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"}
|
|
| 83 | 77 |
} |
| 84 | 78 |
|
| 85 | 79 |
# Restore xtrace |
| ... | ... |
@@ -377,6 +377,7 @@ function create_nova_conf() {
|
| 377 | 377 |
iniset $NOVA_CONF DEFAULT ec2_workers "4" |
| 378 | 378 |
iniset $NOVA_CONF DEFAULT metadata_workers "4" |
| 379 | 379 |
iniset $NOVA_CONF DEFAULT sql_connection `database_connection_url nova` |
| 380 |
+ iniset $NOVA_CONF DEFAULT fatal_deprecations "True" |
|
| 380 | 381 |
iniset $NOVA_CONF DEFAULT instance_name_template "${INSTANCE_NAME_PREFIX}%08x"
|
| 381 | 382 |
iniset $NOVA_CONF osapi_v3 enabled "True" |
| 382 | 383 |
|