diff options
-rw-r--r-- | build/Makefile | 2 | ||||
-rw-r--r-- | ci/PR_revision.log | 1 | ||||
-rwxr-xr-x | lib/configure-deps-functions.sh | 8 | ||||
-rwxr-xr-x | lib/overcloud-deploy-functions.sh | 4 | ||||
-rwxr-xr-x | lib/undercloud-functions.sh | 2 |
5 files changed, 13 insertions, 4 deletions
diff --git a/build/Makefile b/build/Makefile index 89aa647c..7374215e 100644 --- a/build/Makefile +++ b/build/Makefile @@ -204,7 +204,7 @@ networking-vpp.noarch.rpm: networking-vpp mv networking-vpp/dist/*.rpm networking-vpp.noarch.rpm networking-vpp: - git clone -b stable https://github.com/naveenjoy/networking-vpp.git + git clone -b stable_vlan_rewrite https://github.com/fepan/networking-vpp.git ############### # UNDERCLOUD # diff --git a/ci/PR_revision.log b/ci/PR_revision.log index a911d04a..15787b95 100644 --- a/ci/PR_revision.log +++ b/ci/PR_revision.log @@ -38,3 +38,4 @@ 76,Add networking-vpp ML2 mechanism driver 77,Update FDIO to use opendaylight_v2 mechanism driver 78,Fix spelling mistake in specs filter +79,Fix controller and compute ip array
\ No newline at end of file diff --git a/lib/configure-deps-functions.sh b/lib/configure-deps-functions.sh index 2c5411e3..ffc764b4 100755 --- a/lib/configure-deps-functions.sh +++ b/lib/configure-deps-functions.sh @@ -95,11 +95,17 @@ EOF done else for network in ${OPNFV_NETWORK_TYPES}; do + if ! ovs-vsctl --may-exist add-br ${NET_MAP[$network]}; then + echo -e "${red}ERROR: Failed to create ovs bridge ${NET_MAP[$network]}{$reset}" + exit 1 + fi echo "${blue}INFO: Creating Virsh Network: $network${reset}" virsh net-list --all | grep $network > /dev/null || (cat > ${libvirt_dir}/apex-virsh-net.xml && virsh net-define ${libvirt_dir}/apex-virsh-net.xml) << EOF <network ipv6='yes'> <name>$network</name> +<forward mode='bridge'/> <bridge name='${NET_MAP[$network]}'/> +<virtualport type='openvswitch'/> </network> EOF if ! (virsh net-list --all | grep $network > /dev/null); then @@ -112,7 +118,7 @@ EOF done echo -e "${blue}INFO: Bridges set: ${reset}" - brctl show + ovs-vsctl list-br fi echo -e "${blue}INFO: virsh networks set: ${reset}" diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh index e278a68e..498fd135 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -178,8 +178,8 @@ EOI # set NIC heat params and resource registry ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI -sed -i '/TenantNIC:/c\ TenantNIC: '${private_network_compute_interface} opnfv-environment.yaml -sed -i '/PublicNIC:/c\ PublicNIC: '${public_network_compute_interface} opnfv-environment.yaml +sudo sed -i '/TenantNIC:/c\ TenantNIC: '${private_network_compute_interface} /usr/share/openstack-tripleo-heat-templates/environments/numa.yaml +sudo sed -i '/PublicNIC:/c\ PublicNIC: '${public_network_compute_interface} /usr/share/openstack-tripleo-heat-templates/environments/numa.yaml EOI DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/numa.yaml" diff --git a/lib/undercloud-functions.sh b/lib/undercloud-functions.sh index 177fe443..d2ba6bca 100755 --- a/lib/undercloud-functions.sh +++ b/lib/undercloud-functions.sh @@ -206,6 +206,8 @@ if [[ "$net_isolation_enabled" == "TRUE" ]]; then openstack-config --set undercloud.conf DEFAULT inspection_iprange ${admin_network_introspection_range} openstack-config --set undercloud.conf DEFAULT undercloud_debug false openstack-config --set undercloud.conf DEFAULT undercloud_hostname "undercloud.${domain_name}" + sudo openstack-config --set /etc/ironic/ironic.conf disk_utils iscsi_verify_attempts 30 + sudo openstack-config --set /etc/ironic/ironic.conf disk_partitioner check_device_max_retries 40 fi |