Files
training-labs/labs/osbash/scripts/ubuntu/setup_neutron_controller.sh
Roger Luethi c5fdafc900 Newton updates
This changeset contains updates for Newton.

Notable changes include:
- Ubuntu 14.04 LTS (trusty) replaced by Ubuntu 16.04 LTS (xenial)
- Higher RAM requirements, the controller VM needs 5120 MB
- Script order changed (install-guide changes)
- By default, mariadb does not use a root password but socket auth (sudo)
- Nova does not configure any default flavors anymore; we create m1.nano
  and that's all there is when the cluster is built.
- Remaining differences to install-guide marked in the source code
- As always, new races fixed

Change-Id: Id59e145140252c4384584a3899e01a38e8a57158
2016-10-17 13:40:06 +02:00

61 lines
1.5 KiB
Bash
Executable File

#!/usr/bin/env bash
set -o errexit -o nounset
TOP_DIR=$(cd "$(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.
# http://docs.openstack.org/newton/install-guide-ubuntu/neutron-controller-install.html
#------------------------------------------------------------------------------
echo "Setting up database for neutron."
setup_database neutron "$NEUTRON_DB_USER" "$NEUTRON_DBPASS"
source "$CONFIG_DIR/admin-openstackrc.sh"
neutron_admin_user=neutron
# Wait for keystone to come up
wait_for_keystone
echo "Creating neutron user and giving it admin role under service tenant."
openstack user create \
--domain default \
--password "$NEUTRON_PASS" \
"$neutron_admin_user"
openstack role add \
--project "$SERVICE_PROJECT_NAME" \
--user "$neutron_admin_user" \
"$ADMIN_ROLE_NAME"
echo "Registering neutron with keystone so that other services can locate it."
openstack service create \
--name neutron \
--description "OpenStack Networking" \
network
openstack endpoint create \
--region "$REGION" \
network \
public http://controller:9696
openstack endpoint create \
--region "$REGION" \
network \
internal http://controller:9696
openstack endpoint create \
--region "$REGION" \
network \
public http://controller:9696