Files
training-labs/labs/osbash/scripts/ubuntu/setup_neutron_controller_part_2.sh
Roger Luethi 96c6e7fcea Pike update
This changeset contains update for Pike.

Notable changes include:
- First release after big documentation move (URLs changed)

Change-Id: I73288f3d32c5883b1b27d8827a367086de560046
2017-09-04 10:16:36 +02:00

98 lines
3.3 KiB
Bash
Executable File

#!/usr/bin/env bash
set -o errexit -o nounset
TOP_DIR=$(cd $(cat "../TOP_DIR"||echo $(dirname "$0"))/.. && pwd)
source "$TOP_DIR/config/paths"
source "$CONFIG_DIR/credentials"
source "$LIB_DIR/functions.guest.sh"
exec_logfile
indicate_current_auto
#------------------------------------------------------------------------------
# Set up OpenStack Networking (neutron) for controller node.
# https://docs.openstack.org/neutron/pike/install/controller-install-ubuntu.html
#------------------------------------------------------------------------------
source "$CONFIG_DIR/admin-openstackrc.sh"
neutron_admin_user=neutron
# Wait for keystone to come up
wait_for_keystone
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Configure the metadata agent
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
echo "Configuring the metadata agent."
conf=/etc/neutron/metadata_agent.ini
iniset_sudo $conf DEFAULT nova_metadata_ip controller
iniset_sudo $conf DEFAULT metadata_proxy_shared_secret "$METADATA_SECRET"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Configure the Compute service to use the Networking service
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
echo "Configuring Compute to use Networking."
conf=/etc/nova/nova.conf
iniset_sudo $conf neutron url http://controller:9696
iniset_sudo $conf neutron auth_url http://controller:35357
iniset_sudo $conf neutron auth_type password
iniset_sudo $conf neutron project_domain_name default
iniset_sudo $conf neutron user_domain_name default
iniset_sudo $conf neutron region_name "$REGION"
iniset_sudo $conf neutron project_name "$SERVICE_PROJECT_NAME"
iniset_sudo $conf neutron username "$neutron_admin_user"
iniset_sudo $conf neutron password "$NEUTRON_PASS"
iniset_sudo $conf neutron service_metadata_proxy true
iniset_sudo $conf neutron metadata_proxy_shared_secret "$METADATA_SECRET"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Finalize installation
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
echo "Populating the database."
sudo neutron-db-manage \
--config-file /etc/neutron/neutron.conf \
--config-file /etc/neutron/plugins/ml2/ml2_conf.ini \
upgrade head
echo "Restarting nova services."
sudo service nova-api restart
echo "Restarting neutron-server."
sudo service neutron-server restart
echo "Restarting neutron-linuxbridge-agent."
sudo service neutron-linuxbridge-agent restart
echo "Restarting neutron-dhcp-agent."
sudo service neutron-dhcp-agent restart
echo "Restarting neutron-metadata-agent."
sudo service neutron-metadata-agent restart
if type neutron-l3-agent; then
# Installed only for networking option 2 of the install-guide.
echo "Restarting neutron-l3-agent."
sudo service neutron-l3-agent restart
fi
#------------------------------------------------------------------------------
# Set up OpenStack Networking (neutron) for controller node.
# https://docs.openstack.org/neutron/pike/install/verify-option2.html
#------------------------------------------------------------------------------
echo -n "Verifying operation."
until openstack network agent list >/dev/null 2>&1; do
sleep 1
echo -n .
done
echo
openstack network agent list