
This changeset contains update for Pike. Notable changes include: - First release after big documentation move (URLs changed) Change-Id: I73288f3d32c5883b1b27d8827a367086de560046
61 lines
2.2 KiB
Bash
Executable File
61 lines
2.2 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"
|
|
source "$CONFIG_DIR/openstack"
|
|
|
|
exec_logfile
|
|
|
|
indicate_current_auto
|
|
|
|
#------------------------------------------------------------------------------
|
|
# Install and configure compute node
|
|
# https://docs.openstack.org/neutron/pike/install/compute-install-ubuntu.html
|
|
#------------------------------------------------------------------------------
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Configure the Compute service to use the Networking service
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
neutron_admin_user=neutron
|
|
|
|
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"
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Finalize installation
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
echo "Restarting the Compute service."
|
|
sudo service nova-compute restart
|
|
|
|
echo "Restarting neutron-linuxbridge-agent."
|
|
sudo service neutron-linuxbridge-agent restart
|
|
|
|
#------------------------------------------------------------------------------
|
|
# Networking Option 2: Self-service networks
|
|
# https://docs.openstack.org/neutron/pike/install/verify-option2.html
|
|
#------------------------------------------------------------------------------
|
|
|
|
echo "Sourcing the admin credentials."
|
|
source "$CONFIG_DIR/admin-openstackrc.sh"
|
|
|
|
echo "Listing agents to verify successful launch of the neutron agents."
|
|
|
|
echo "openstack network agent list"
|
|
openstack network agent list
|