897337cdd6
The only files in the docker image directories that differ majorly between distros are the Dockerfiles (e.g. different package manager mechanisms, different repo sources, etc). The supporting files such as the start.sh/check.sh and config files should largely stay the same between base images. This change moves these files up into a "common" directory, and symlinks them in the same way that the build script is managed. This means when adding a new base distro only new Dockerfiles need to be created. Also, if a distro does happen to require a vastly different start.sh script for example, one can choose to simply not symlink to the common and instead drop in a custom one. Implements: blueprint refactor-base-image-layout Change-Id: Ic4db69d31ff54a1fb95af4853a2e5ae490064284
31 lines
931 B
Bash
Executable File
31 lines
931 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. /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
|