instack-undercloud/deploy-baremetal-overcloudrc
Dan Prince 2eb0893030 Set NeutronPublicInterface to nic1
Updates the instack-deploy-overcloud script to use the 'nic1'
os-net-config naming abstraction instead of hard coding this
as eth0.

If you are deploying to real hardware eth0 most likely won't
exist and you'll get an error.

This also updates the rc scripts to match the defaults.

Change-Id: If478f685f1a07ca92f068240a54d5a3275cafb21
2015-03-20 07:03:00 -04:00

14 lines
409 B
Bash

#!/bin/bash
export NeutronPublicInterface=nic1
export OVERCLOUD_LIBVIRT_TYPE=kvm
export NETWORK_CIDR="10.0.0.0/8"
export FLOATING_IP_START="172.17.0.45"
export FLOATING_IP_END="172.17.0.64"
export FLOATING_IP_CIDR="172.17.0.0/16"
export BM_NETWORK_GATEWAY="172.17.0.1"
export NEUTRON_NETWORK_TYPE=gre
export NEUTRON_TUNNEL_TYPES=gre
export COMPUTESCALE=1
export BLOCKSTORAGESCALE=0
export SWIFTSTORAGESCALE=0