
Previously, check_required_vars was requiring log file variables to be set in openstack.env. This would cause an error when starting nova/neutron containers that used default (blank) log file settings. Since the log files are not required for the services to start, the default log files are left blank (without a value in the K/V pair). This patch removes the log_file variable for check_required_vars in each nova/neutron script. Change-Id: I169baab28f63a0e0ae06c8aef21b5e8d3155bdda
31 lines
929 B
Bash
Executable File
31 lines
929 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /opt/kolla/config-nova.sh
|
|
|
|
cfg=/etc/nova/nova.conf
|
|
|
|
# configure logging
|
|
crudini --set $cfg DEFAULT log_file "${NOVA_NETWORK_LOG_FILE}"
|
|
|
|
# Configure eth1 as a physcial interface for nova flat network
|
|
cat > /etc/sysconfig/network-scripts/ifcfg-$FLAT_INTERFACE <<EOF
|
|
DEVICE="$FLAT_INTERFACE"
|
|
BOOTPROTO="none"
|
|
ONBOOT="yes"
|
|
TYPE="Ethernet"
|
|
EOF
|
|
|
|
/usr/sbin/ifup $FLAT_INTERFACE
|
|
|
|
cfg=/etc/nova/nova.conf
|
|
|
|
crudini --set $cfg DEFAULT network_manager nova.network.manager.FlatDHCPManager
|
|
crudini --set $cfg DEFAULT firewall_driver nova.virt.libvirt.firewall.IptablesFirewallDriver
|
|
crudini --set $cfg DEFAULT network_size 254
|
|
crudini --set $cfg DEFAULT allow_same_net_traffic False
|
|
crudini --set $cfg DEFAULT multi_host True
|
|
crudini --set $cfg DEFAULT send_arp_for_ha True
|
|
crudini --set $cfg DEFAULT share_dhcp_address True
|
|
crudini --set $cfg DEFAULT force_dhcp_release True
|
|
crudini --set $cfg DEFAULT flat_network_bridge br100
|