blob: 2e823ea85086d5fa76a662122b960305e3a6cda7 [file] [log] [blame]
Jesse Andrewsba23cc72011-09-11 03:22:13 -07001#!/usr/bin/env bash
2
Jesse Andrews0e7e8972011-10-02 16:36:54 -04003# **stack.sh** is an opinionated openstack developer installation.
4
5# This script installs and configures *nova*, *glance*, *dashboard* and *keystone*
Jesse Andrewsba23cc72011-09-11 03:22:13 -07006
Jesse Andrews5372f432011-10-03 01:08:24 -04007# This script allows you to specify configuration options of what git
8# repositories to use, enabled services, network configuration and various
9# passwords. If you are crafty you can run the script on multiple nodes using
10# shared settings for common resources (mysql, rabbitmq) and build a multi-node
11# developer install.
Jesse Andrews782b9912011-10-02 16:53:21 -040012
Jesse Andrewsc4b3aab2011-09-15 22:54:52 -070013# To keep this script simple we assume you are running on an **Ubuntu 11.04
Jesse Andrews24859062011-09-15 21:28:23 -070014# Natty** machine. It should work in a VM or physical server. Additionally we
15# put the list of *apt* and *pip* dependencies and other configuration files in
16# this repo. So start by grabbing this script and the dependencies.
17
Jesse Andrews0e7e8972011-10-02 16:36:54 -040018# Learn more and get the most recent version at http://devstack.org
Jesse Andrews6edd17f2011-09-15 22:19:42 -070019
20# Sanity Check
21# ============
22
Jesse Andrewsc4b3aab2011-09-15 22:54:52 -070023# Warn users who aren't on natty, but allow them to override check and attempt
Jesse Andrews6edd17f2011-09-15 22:19:42 -070024# installation with ``FORCE=yes ./stack``
Jesse Andrews6edd17f2011-09-15 22:19:42 -070025if ! grep -q natty /etc/lsb-release; then
26 echo "WARNING: this script has only been tested on natty"
27 if [[ "$FORCE" != "yes" ]]; then
28 echo "If you wish to run this script anyway run with FORCE=yes"
29 exit 1
30 fi
31fi
32
root40a37002011-09-20 18:06:14 +000033# stack.sh keeps the list of **apt** and **pip** dependencies in external
Jesse Andrews4d282182011-09-16 11:27:43 -070034# files, along with config templates and other useful files. You can find these
root40a37002011-09-20 18:06:14 +000035# in the ``files`` directory (next to this script). We will reference this
Jesse Andrewsbf3868d2011-09-16 11:31:16 -070036# directory using the ``FILES`` variable in this script.
37FILES=`pwd`/files
38if [ ! -d $FILES ]; then
39 echo "ERROR: missing devstack/files - did you grab more than just stack.sh?"
Jesse Andrews6edd17f2011-09-15 22:19:42 -070040 exit 1
41fi
42
43# Settings
44# ========
Jesse Andrews30f68e92011-09-13 00:59:54 -070045
Jesse Andrewsd74257d2011-09-13 01:24:50 -070046# This script is customizable through setting environment variables. If you
47# want to override a setting you can either::
48#
49# export MYSQL_PASS=anothersecret
50# ./stack.sh
51#
Jesse Andrews6edd17f2011-09-15 22:19:42 -070052# You can also pass options on a single line ``MYSQL_PASS=simple ./stack.sh``
53#
termie197d53d2011-09-28 17:18:23 -070054# Additionally, you can put any local variables into a ``localrc`` file, like::
55#
56# MYSQL_PASS=anothersecret
57# MYSQL_USER=hellaroot
58#
Jesse Andrews6edd17f2011-09-15 22:19:42 -070059# We try to have sensible defaults, so you should be able to run ``./stack.sh``
60# in most cases.
Jesse Andrews5372f432011-10-03 01:08:24 -040061#
62# We our settings from ``stackrc``. This file is distributed with devstack and
63# contains locations for what repositories to use. If you want to use other
64# repositories and branches, you can add your own settings with another file
65# called ``localrc``
66#
67# If ``localrc`` exists, then ``stackrc`` will load those settings. This is
68# useful for changing a branch or repostiory to test other versions. Also you
69# can store your other settings like **MYSQL_PASS** or **ADMIN_PASSWORD** instead
70# of letting devstack generate random ones for you.
Anthony Young2f140202011-09-26 13:02:40 -070071source ./stackrc
72
Scott Moser7c481182011-10-07 13:50:21 +000073LOGFILE=${LOGFILE:-"$PWD/stack.sh.$$.log"}
74(
75# So that errors don't compound we exit on any errors so you see only the
76# first error that occured.
77trap failed ERR
78failed() {
79 local r=$?
80 set +o xtrace
81 [ -n "$LOGFILE" ] && echo "${0##*/} failed: full log in $LOGFILE"
82 exit $r
83}
84
85# Print the commands being run so that we can see the command that triggers
86# an error. It is also useful for following along as the install occurs.
87set -o xtrace
88
89# OpenStack is designed to be run as a regular user (Dashboard will fail to run
90# as root, since apache refused to startup serve content from root user). If
91# stack.sh is run as root, it automatically creates a stack user with
92# sudo privileges and runs as that user.
93
94if [[ $EUID -eq 0 ]]; then
95 echo "You are running this script as root."
96
97 # since this script runs as a normal user, we need to give that user
98 # ability to run sudo
99 apt-get update
100 apt-get install -y sudo
101
102 if ! getent passwd | grep -q stack; then
103 echo "Creating a user called stack"
104 useradd -U -G sudo -s /bin/bash -m stack
105 fi
106 echo "Giving stack user passwordless sudo priviledges"
107 echo "stack ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
108
109 echo "Copying files to stack user"
110 cp -r -f `pwd` /home/stack/
111 THIS_DIR=$(basename $(dirname $(readlink -f $0)))
112 chown -R stack /home/stack/$THIS_DIR
113 echo "Running the script as stack in 3 seconds..."
114 sleep 3
115 if [[ "$SHELL_AFTER_RUN" != "no" ]]; then
116 exec su -c "cd /home/stack/$THIS_DIR/; bash stack.sh; bash" stack
117 else
118 exec su -c "cd /home/stack/$THIS_DIR/; bash stack.sh" stack
119 fi
120 exit 0
121fi
122
Jesse Andrews6edd17f2011-09-15 22:19:42 -0700123# Destination path for installation ``DEST``
Anthony Younge8fed482011-09-26 19:50:43 -0700124DEST=${DEST:-/opt/stack}
125sudo mkdir -p $DEST
126sudo chown `whoami` $DEST
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700127
Jesse Andrews6f3baaf2011-09-12 11:59:38 -0700128# Set the destination directories for openstack projects
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700129NOVA_DIR=$DEST/nova
130DASH_DIR=$DEST/dash
131GLANCE_DIR=$DEST/glance
132KEYSTONE_DIR=$DEST/keystone
133NOVACLIENT_DIR=$DEST/python-novaclient
Anthony Young2f140202011-09-26 13:02:40 -0700134OPENSTACKX_DIR=$DEST/openstackx
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700135NOVNC_DIR=$DEST/noVNC
Anthony Younga8416442011-09-13 20:07:44 -0700136
137# Specify which services to launch. These generally correspond to screen tabs
Jesse Andrews9b6741e2011-10-02 10:01:00 -0700138ENABLED_SERVICES=${ENABLED_SERVICES:-g-api,g-reg,key,n-api,n-cpu,n-net,n-sch,n-vnc,dash,mysql,rabbit}
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700139
Jesse Andrews782b9912011-10-02 16:53:21 -0400140# Nova hypervisor configuration. We default to **kvm** but will drop back to
141# **qemu** if we are unable to load the kvm module. Stack.sh can also install
142# an **LXC** based system.
143LIBVIRT_TYPE=${LIBVIRT_TYPE:-kvm}
144
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400145# nova supports pluggable schedulers. ``SimpleScheduler`` should work in most
146# cases unless you are working on multi-zone mode.
Jesse Andrews782b9912011-10-02 16:53:21 -0400147SCHEDULER=${SCHEDULER:-nova.scheduler.simple.SimpleScheduler}
148
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700149# Use the first IP unless an explicit is set by ``HOST_IP`` environment variable
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700150if [ ! -n "$HOST_IP" ]; then
Dean Troyer2a15a7c2011-09-13 13:22:14 -0500151 HOST_IP=`LC_ALL=C /sbin/ifconfig | grep -m 1 'inet addr:'| cut -d: -f2 | awk '{print $1}'`
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700152fi
153
Jesse Andrews782b9912011-10-02 16:53:21 -0400154# Nova Network Configuration
155# --------------------------
156
Jesse Andrews5372f432011-10-03 01:08:24 -0400157# FIXME: more documentation about why these are important flags. Also
158# we should make sure we use the same variable names as the flag names.
159
Anthony Youngb1bdd5e2011-09-20 09:39:50 -0700160PUBLIC_INTERFACE=${PUBLIC_INTERFACE:-eth0}
Jesse Andrewsb5197e42011-09-26 12:48:31 -0700161FIXED_RANGE=${FIXED_RANGE:-10.0.0.0/24}
162FIXED_NETWORK_SIZE=${FIXED_NETWORK_SIZE:-256}
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400163FLOATING_RANGE=${FLOATING_RANGE:-172.24.4.1/28}
Jesse Andrewsa72f7ad2011-09-25 13:41:22 -0700164NET_MAN=${NET_MAN:-FlatDHCPManager}
Anthony Younga8416442011-09-13 20:07:44 -0700165EC2_DMZ_HOST=${EC2_DMZ_HOST:-$HOST_IP}
Anthony Youngb1bdd5e2011-09-20 09:39:50 -0700166FLAT_NETWORK_BRIDGE=${FLAT_NETWORK_BRIDGE:-br100}
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400167VLAN_INTERFACE=${VLAN_INTERFACE:-$PUBLIC_INTERFACE}
168
169# Multi-host is a mode where each compute node runs its own network node. This
170# allows network operations and routing for a VM to occur on the server that is
171# running the VM - removing a SPOF and bandwidth bottleneck.
172MULTI_HOST=${MULTI_HOST:-0}
Jesse Andrews30f68e92011-09-13 00:59:54 -0700173
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700174# If you are using FlatDHCP on multiple hosts, set the ``FLAT_INTERFACE``
175# variable but make sure that the interface doesn't already have an
176# ip or you risk breaking things.
Jesse Andrews5372f432011-10-03 01:08:24 -0400177#
178# **DHCP Warning**: If your flat interface device uses DHCP, there will be a
179# hiccup while the network is moved from the flat interface to the flat network
180# bridge. This will happen when you launch your first instance. Upon launch
181# you will lose all connectivity to the node, and the vm launch will probably
182# fail.
183#
184# If you are running on a single node and don't need to access the VMs from
185# devices other than that node, you can set the flat interface to the same
186# value as ``FLAT_NETWORK_BRIDGE``. This will stop the network hiccup from
187# occuring.
Jesse Andrews8ff5dbc2011-09-25 22:28:08 -0700188FLAT_INTERFACE=${FLAT_INTERFACE:-eth0}
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700189
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400190## FIXME(ja): should/can we check that FLAT_INTERFACE is sane?
191
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700192
Jesse Andrews782b9912011-10-02 16:53:21 -0400193# MySQL & RabbitMQ
194# ----------------
195
196# We configure Nova, Dashboard, Glance and Keystone to use MySQL as their
197# database server. While they share a single server, each has their own
198# database and tables.
199
200# By default this script will install and configure MySQL. If you want to
201# use an existing server, you can pass in the user/password/host parameters.
202# You will need to send the same ``MYSQL_PASS`` to every host if you are doing
203# a multi-node devstack installation.
Anthony Young320412b2011-09-14 02:39:10 -0700204MYSQL_USER=${MYSQL_USER:-root}
Jesse Andrewsfa418f62011-10-02 09:30:54 -0700205MYSQL_PASS=${MYSQL_PASS:-`openssl rand -hex 12`}
Anthony Younga8416442011-09-13 20:07:44 -0700206MYSQL_HOST=${MYSQL_HOST:-localhost}
Jesse Andrews782b9912011-10-02 16:53:21 -0400207
Anthony Younga8416442011-09-13 20:07:44 -0700208# don't specify /db in this string, so we can use it for multiple services
Anthony Youngfdaf21a2011-09-13 20:11:42 -0700209BASE_SQL_CONN=${BASE_SQL_CONN:-mysql://$MYSQL_USER:$MYSQL_PASS@$MYSQL_HOST}
Anthony Younga8416442011-09-13 20:07:44 -0700210
211# Rabbit connection info
212RABBIT_HOST=${RABBIT_HOST:-localhost}
Jesse Andrews53ed3872011-10-02 14:28:17 -0400213RABBIT_PASSWORD=${RABBIT_PASSWORD:-`openssl rand -hex 12`}
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700214
Anthony Young377aae62011-09-14 09:55:31 -0700215# Glance connection info. Note the port must be specified.
Anthony Youngb1bdd5e2011-09-20 09:39:50 -0700216GLANCE_HOSTPORT=${GLANCE_HOSTPORT:-$HOST_IP:9292}
Anthony Young377aae62011-09-14 09:55:31 -0700217
Jesse Andrews782b9912011-10-02 16:53:21 -0400218# Keystone
219# --------
220
Jesse Andrewsb96871e2011-10-02 09:02:46 -0700221# Service Token - Openstack components need to have an admin token
222# to validate user tokens.
Anthony Young06b7ad72011-10-04 13:30:19 -0700223SERVICE_TOKEN=${SERVICE_TOKEN:-`openssl rand -hex 12`}
Anthony Youngf2aee712011-10-04 13:32:45 -0700224# Dash currently truncates usernames and passwords at 20 characters
225# so use 10 bytes
226ADMIN_PASSWORD=${ADMIN_PASSWORD:-`openssl rand -hex 10`}
Jesse Andrewsb96871e2011-10-02 09:02:46 -0700227
Jesse Andrews53ed3872011-10-02 14:28:17 -0400228
Jesse Andrews30f68e92011-09-13 00:59:54 -0700229# Install Packages
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700230# ================
Jesse Andrews30f68e92011-09-13 00:59:54 -0700231#
232# Openstack uses a fair number of other projects.
233
Jesse Andrews2caf8fd2011-09-12 16:15:11 -0700234
Jesse Andrews75a37652011-09-12 17:09:08 -0700235# install apt requirements
Jesse Andrews461bfdc2011-10-09 17:50:38 -0700236sudo apt-get install -qqy `cat $FILES/apts/* | cut -d\# -f1 | grep -Ev "mysql-server|rabbitmq-server"`
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700237
Jesse Andrews75a37652011-09-12 17:09:08 -0700238# install python requirements
Jesse Andrewsbf3868d2011-09-16 11:31:16 -0700239sudo PIP_DOWNLOAD_CACHE=/var/cache/pip pip install `cat $FILES/pips/*`
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700240
Jesse Andrewsd61db852011-09-16 14:13:17 -0700241# git clone only if directory doesn't exist already. Since ``DEST`` might not
242# be owned by the installation user, we create the directory and change the
243# ownership to the proper user.
Jesse Andrews61632572011-09-12 17:40:00 -0700244function git_clone {
245 if [ ! -d $2 ]; then
Jesse Andrewsd61db852011-09-16 14:13:17 -0700246 sudo mkdir $2
247 sudo chown `whoami` $2
Jesse Andrews61632572011-09-12 17:40:00 -0700248 git clone $1 $2
Anthony Young2f140202011-09-26 13:02:40 -0700249 cd $2
Anthony Young303233e2011-09-26 13:12:57 -0700250 # This checkout syntax works for both branches and tags
Anthony Young2f140202011-09-26 13:02:40 -0700251 git checkout $3
Jesse Andrews61632572011-09-12 17:40:00 -0700252 fi
253}
254
Jesse Andrews75a37652011-09-12 17:09:08 -0700255# compute service
Anthony Young2f140202011-09-26 13:02:40 -0700256git_clone $NOVA_REPO $NOVA_DIR $NOVA_BRANCH
Jesse Andrews75a37652011-09-12 17:09:08 -0700257# image catalog service
Anthony Young2f140202011-09-26 13:02:40 -0700258git_clone $GLANCE_REPO $GLANCE_DIR $GLANCE_BRANCH
Jesse Andrews75a37652011-09-12 17:09:08 -0700259# unified auth system (manages accounts/tokens)
Anthony Young2f140202011-09-26 13:02:40 -0700260git_clone $KEYSTONE_REPO $KEYSTONE_DIR $KEYSTONE_BRANCH
Jesse Andrews75a37652011-09-12 17:09:08 -0700261# a websockets/html5 or flash powered VNC console for vm instances
Anthony Young2f140202011-09-26 13:02:40 -0700262git_clone $NOVNC_REPO $NOVNC_DIR $NOVNC_BRANCH
Jesse Andrews75a37652011-09-12 17:09:08 -0700263# django powered web control panel for openstack
Anthony Young2f140202011-09-26 13:02:40 -0700264git_clone $DASH_REPO $DASH_DIR $DASH_BRANCH $DASH_TAG
Jesse Andrews75a37652011-09-12 17:09:08 -0700265# python client library to nova that dashboard (and others) use
Anthony Young2f140202011-09-26 13:02:40 -0700266git_clone $NOVACLIENT_REPO $NOVACLIENT_DIR $NOVACLIENT_BRANCH
root40a37002011-09-20 18:06:14 +0000267# openstackx is a collection of extensions to openstack.compute & nova
Jesse Andrews75a37652011-09-12 17:09:08 -0700268# that is *deprecated*. The code is being moved into python-novaclient & nova.
Anthony Young2f140202011-09-26 13:02:40 -0700269git_clone $OPENSTACKX_REPO $OPENSTACKX_DIR $OPENSTACKX_BRANCH
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700270
Jesse Andrews30f68e92011-09-13 00:59:54 -0700271# Initialization
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700272# ==============
Jesse Andrews30f68e92011-09-13 00:59:54 -0700273
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700274
Jesse Andrews75a37652011-09-12 17:09:08 -0700275# setup our checkouts so they are installed into python path
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700276# allowing ``import nova`` or ``import glance.client``
Dean Troyer0017c8f2011-09-13 15:37:50 -0500277cd $NOVA_DIR; sudo python setup.py develop
Jesse Andrews18d350d2011-09-12 21:46:12 -0700278cd $NOVACLIENT_DIR; sudo python setup.py develop
279cd $KEYSTONE_DIR; sudo python setup.py develop
280cd $GLANCE_DIR; sudo python setup.py develop
Anthony Young2f140202011-09-26 13:02:40 -0700281cd $OPENSTACKX_DIR; sudo python setup.py develop
Jesse Andrews18d350d2011-09-12 21:46:12 -0700282cd $DASH_DIR/django-openstack; sudo python setup.py develop
283cd $DASH_DIR/openstack-dashboard; sudo python setup.py develop
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700284
Jesse Andrews6edd17f2011-09-15 22:19:42 -0700285# Add a useful screenrc. This isn't required to run openstack but is we do
root40a37002011-09-20 18:06:14 +0000286# it since we are going to run the services in screen for simple
Jesse Andrewsbf3868d2011-09-16 11:31:16 -0700287cp $FILES/screenrc ~/.screenrc
Jesse Andrews6f3baaf2011-09-12 11:59:38 -0700288
Jesse Andrews6edd17f2011-09-15 22:19:42 -0700289## TODO: update current user to allow sudo for all commands in files/sudo/*
Jesse Andrewsdfcd2002011-09-13 13:17:22 -0700290
Anthony Younga09ae2f2011-09-15 23:11:29 -0700291# Rabbit
292# ---------
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400293
Anthony Younga09ae2f2011-09-15 23:11:29 -0700294if [[ "$ENABLED_SERVICES" =~ "rabbit" ]]; then
295 # Install and start rabbitmq-server
Anthony Young093eeb02011-09-15 23:17:44 -0700296 sudo apt-get install -y -q rabbitmq-server
Jesse Andrews53ed3872011-10-02 14:28:17 -0400297 # change the rabbit password since the default is "guest"
298 sudo rabbitmqctl change_password guest $RABBIT_PASSWORD
Anthony Younga09ae2f2011-09-15 23:11:29 -0700299fi
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700300
Jesse Andrews24859062011-09-15 21:28:23 -0700301# Mysql
302# ---------
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400303
Jesse Andrews24859062011-09-15 21:28:23 -0700304if [[ "$ENABLED_SERVICES" =~ "mysql" ]]; then
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400305
306 # Seed configuration with mysql password so that apt-get install doesn't
307 # prompt us for a password upon install.
308 cat <<MYSQL_PRESEED | sudo debconf-set-selections
309mysql-server-5.1 mysql-server/root_password password $MYSQL_PASS
310mysql-server-5.1 mysql-server/root_password_again password $MYSQL_PASS
311mysql-server-5.1 mysql-server/start_on_boot boolean true
312MYSQL_PRESEED
313
Anthony Younga09ae2f2011-09-15 23:11:29 -0700314 # Install and start mysql-server
Anthony Young093eeb02011-09-15 23:17:44 -0700315 sudo apt-get -y -q install mysql-server
Jesse Andrews24859062011-09-15 21:28:23 -0700316 # Update the DB to give user ‘$MYSQL_USER’@’%’ full control of the all databases:
317 sudo mysql -uroot -p$MYSQL_PASS -e "GRANT ALL PRIVILEGES ON *.* TO '$MYSQL_USER'@'%' identified by '$MYSQL_PASS';"
318
319 # Edit /etc/mysql/my.cnf to change ‘bind-address’ from localhost (127.0.0.1) to any (0.0.0.0) and restart the mysql service:
320 sudo sed -i 's/127.0.0.1/0.0.0.0/g' /etc/mysql/my.cnf
321 sudo service mysql restart
322fi
323
324
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700325# Dashboard
326# ---------
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400327
328# Setup the django dashboard application to serve via apache/wsgi
Jesse Andrews75a37652011-09-12 17:09:08 -0700329
Anthony Young70dc5e02011-09-15 16:52:43 -0700330if [[ "$ENABLED_SERVICES" =~ "dash" ]]; then
Jesse Andrews24859062011-09-15 21:28:23 -0700331
root40a37002011-09-20 18:06:14 +0000332 # Dash currently imports quantum even if you aren't using it. Instead
333 # of installing quantum we can create a simple module that will pass the
Jesse Andrews24859062011-09-15 21:28:23 -0700334 # initial imports
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400335 mkdir -p $DASH_DIR/openstack-dashboard/quantum || true
336 touch $DASH_DIR/openstack-dashboard/quantum/__init__.py
337 touch $DASH_DIR/openstack-dashboard/quantum/client.py
338
339
340 # ``local_settings.py`` is used to override dashboard default settings.
341 cp $FILES/dash_settings.py $DASH_DIR/openstack-dashboard/local/local_settings.py
Jesse Andrews1c1d1502011-09-12 19:29:56 -0700342
Anthony Young70dc5e02011-09-15 16:52:43 -0700343 cd $DASH_DIR/openstack-dashboard
Anthony Young70dc5e02011-09-15 16:52:43 -0700344 dashboard/manage.py syncdb
Jesse Andrews75a37652011-09-12 17:09:08 -0700345
Anthony Young70dc5e02011-09-15 16:52:43 -0700346 # create an empty directory that apache uses as docroot
347 sudo mkdir -p $DASH_DIR/.blackhole
Jesse Andrews1c1d1502011-09-12 19:29:56 -0700348
Anthony Young70dc5e02011-09-15 16:52:43 -0700349 ## Configure apache's 000-default to run dashboard
Jesse Andrewsbf3868d2011-09-16 11:31:16 -0700350 sudo cp $FILES/000-default.template /etc/apache2/sites-enabled/000-default
Jesse Andrews8f3e28c2011-09-27 18:26:27 -0700351 sudo sed -e "s,%USER%,$USER,g" -i /etc/apache2/sites-enabled/000-default
Anthony Young70dc5e02011-09-15 16:52:43 -0700352 sudo sed -e "s,%DASH_DIR%,$DASH_DIR,g" -i /etc/apache2/sites-enabled/000-default
Anthony Young70dc5e02011-09-15 16:52:43 -0700353fi
Jesse Andrews75a37652011-09-12 17:09:08 -0700354
Anthony Young3859f732011-09-14 02:33:43 -0700355
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700356# Glance
357# ------
358
Anthony Young70dc5e02011-09-15 16:52:43 -0700359if [[ "$ENABLED_SERVICES" =~ "g-reg" ]]; then
Anthony Youngc8357622011-09-20 10:38:06 -0700360 GLANCE_IMAGE_DIR=$DEST/glance/images
Anthony Younga531b772011-09-20 09:59:54 -0700361 # Delete existing images
362 rm -rf $GLANCE_IMAGE_DIR
Jesse Andrews75a37652011-09-12 17:09:08 -0700363
Anthony Younga531b772011-09-20 09:59:54 -0700364 # Use local glance directories
365 mkdir -p $GLANCE_IMAGE_DIR
366
Anthony Young70dc5e02011-09-15 16:52:43 -0700367 # (re)create glance database
root40a37002011-09-20 18:06:14 +0000368 mysql -u$MYSQL_USER -p$MYSQL_PASS -e 'DROP DATABASE IF EXISTS glance;'
Anthony Young70dc5e02011-09-15 16:52:43 -0700369 mysql -u$MYSQL_USER -p$MYSQL_PASS -e 'CREATE DATABASE glance;'
370 # Copy over our glance-registry.conf
371 GLANCE_CONF=$GLANCE_DIR/etc/glance-registry.conf
Jesse Andrewsbf3868d2011-09-16 11:31:16 -0700372 cp $FILES/glance-registry.conf $GLANCE_CONF
Anthony Young70dc5e02011-09-15 16:52:43 -0700373 sudo sed -e "s,%SQL_CONN%,$BASE_SQL_CONN/glance,g" -i $GLANCE_CONF
Jesse Andrewsb96871e2011-10-02 09:02:46 -0700374 sudo sed -e "s,%SERVICE_TOKEN%,$SERVICE_TOKEN,g" -i $GLANCE_CONF
Anthony Younga531b772011-09-20 09:59:54 -0700375 sudo sed -e "s,%DEST%,$DEST,g" -i $GLANCE_CONF
Anthony Youngf12d3ab2011-09-20 00:33:51 -0700376
377 GLANCE_API_CONF=$GLANCE_DIR/etc/glance-api.conf
378 cp $FILES/glance-api.conf $GLANCE_API_CONF
Anthony Younga531b772011-09-20 09:59:54 -0700379 sudo sed -e "s,%DEST%,$DEST,g" -i $GLANCE_API_CONF
Jesse Andrewsb96871e2011-10-02 09:02:46 -0700380 sudo sed -e "s,%SERVICE_TOKEN%,$SERVICE_TOKEN,g" -i $GLANCE_API_CONF
Anthony Young70dc5e02011-09-15 16:52:43 -0700381fi
Jesse Andrews75a37652011-09-12 17:09:08 -0700382
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700383# Nova
384# ----
385
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400386# We are going to use the sample http middleware configuration from the keystone
387# project to launch nova. This paste config adds the configuration required
388# for nova to validate keystone tokens - except we need to switch the config
389# to use our admin token instead (instead of the token from their sample data).
Jesse Andrews9f20f512011-10-02 09:18:03 -0700390sudo sed -e "s,999888777666,$SERVICE_TOKEN,g" -i $KEYSTONE_DIR/examples/paste/nova-api-paste.ini
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700391
Anthony Young70dc5e02011-09-15 16:52:43 -0700392if [[ "$ENABLED_SERVICES" =~ "n-cpu" ]]; then
Jesse Andrewsdfcd2002011-09-13 13:17:22 -0700393
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400394 # Virtualization Configuration
395 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
396
397 # attempt to load modules: network block device - used to manage qcow images
Anthony Young70dc5e02011-09-15 16:52:43 -0700398 sudo modprobe nbd || true
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400399
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400400 # Check for kvm (hardware based virtualization). If unable to load kvm,
401 # set the libvirt type to qemu. Note: many systems come with hardware
402 # virtualization disabled in BIOS.
Jesse Andrews2abbdd42011-10-03 22:48:30 -0400403 if [[ "$LIBVIRT_TYPE" == "kvm" ]]; then
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400404 sudo modprobe kvm || true
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400405 if [ ! -e /dev/kvm ]; then
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400406 echo "WARNING: Switching to QEMU"
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400407 LIBVIRT_TYPE=qemu
408 fi
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700409 fi
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400410
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400411 # Install and configure **LXC** if specified. LXC is another approach to
412 # splitting a system into many smaller parts. LXC uses cgroups and chroot
413 # to simulate multiple systems.
Jesse Andrews2abbdd42011-10-03 22:48:30 -0400414 if [[ "$LIBVIRT_TYPE" == "lxc" ]]; then
Jesse Andrews8cfd8b62011-10-02 13:17:31 -0400415 sudo apt-get install lxc -y
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400416 # lxc requires cgroups to be configured on /cgroup
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400417 sudo mkdir -p /cgroup
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400418 if ! grep -q cgroup /etc/fstab; then
Jesse Andrewsc315ebf2011-10-02 13:25:33 -0400419 echo none /cgroup cgroup cpuacct,memory,devices,cpu,freezer,blkio 0 0 | sudo tee -a /etc/fstab
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400420 fi
Jesse Andrewse4304232011-10-07 10:34:32 -0400421 if ! mount -n | grep -q cgroup; then
422 sudo mount /cgroup
423 fi
Jesse Andrewsc6d30422011-10-02 13:11:28 -0400424 fi
425
Jesse Andrewse30432f2011-09-16 14:54:48 -0700426 # User needs to be member of libvirtd group for nova-compute to use libvirt.
Anthony Young70dc5e02011-09-15 16:52:43 -0700427 sudo usermod -a -G libvirtd `whoami`
428 # if kvm wasn't running before we need to restart libvirt to enable it
429 sudo /etc/init.d/libvirt-bin restart
430
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400431
432 # Instance Storage
433 # ~~~~~~~~~~~~~~~~
434
435 # Nova stores each instance in its own directory.
Anthony Young70dc5e02011-09-15 16:52:43 -0700436 mkdir -p $NOVA_DIR/instances
437
438 # if there is a partition labeled nova-instances use it (ext filesystems
439 # can be labeled via e2label)
440 ## FIXME: if already mounted this blows up...
441 if [ -L /dev/disk/by-label/nova-instances ]; then
442 sudo mount -L nova-instances $NOVA_DIR/instances
443 sudo chown -R `whoami` $NOVA_DIR/instances
444 fi
445
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400446 # Clean out the instances directory.
Jesse Andrews461bfdc2011-10-09 17:50:38 -0700447 sudo rm -rf $NOVA_DIR/instances/*
Jesse Andrewsdfcd2002011-09-13 13:17:22 -0700448fi
449
Anthony Young70dc5e02011-09-15 16:52:43 -0700450if [[ "$ENABLED_SERVICES" =~ "n-net" ]]; then
451 # delete traces of nova networks from prior runs
Anthony Young09fde812011-09-20 02:23:54 -0700452 sudo killall dnsmasq || true
Anthony Young70dc5e02011-09-15 16:52:43 -0700453 rm -rf $NOVA_DIR/networks
454 mkdir -p $NOVA_DIR/networks
455fi
Jesse Andrews75a37652011-09-12 17:09:08 -0700456
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700457function add_nova_flag {
458 echo "$1" >> $NOVA_DIR/bin/nova.conf
459}
460
461# (re)create nova.conf
462rm -f $NOVA_DIR/bin/nova.conf
463add_nova_flag "--verbose"
464add_nova_flag "--nodaemon"
Jesse Andrews8ff5dbc2011-09-25 22:28:08 -0700465add_nova_flag "--scheduler_driver=$SCHEDULER"
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700466add_nova_flag "--dhcpbridge_flagfile=$NOVA_DIR/bin/nova.conf"
467add_nova_flag "--network_manager=nova.network.manager.$NET_MAN"
468add_nova_flag "--my_ip=$HOST_IP"
Anthony Youngb1bdd5e2011-09-20 09:39:50 -0700469add_nova_flag "--public_interface=$PUBLIC_INTERFACE"
470add_nova_flag "--vlan_interface=$VLAN_INTERFACE"
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700471add_nova_flag "--sql_connection=$BASE_SQL_CONN/nova"
472add_nova_flag "--libvirt_type=$LIBVIRT_TYPE"
Anthony Young2f140202011-09-26 13:02:40 -0700473add_nova_flag "--osapi_extensions_path=$OPENSTACKX_DIR/extensions"
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700474add_nova_flag "--vncproxy_url=http://$HOST_IP:6080"
475add_nova_flag "--vncproxy_wwwroot=$NOVNC_DIR/"
476add_nova_flag "--api_paste_config=$KEYSTONE_DIR/examples/paste/nova-api-paste.ini"
477add_nova_flag "--image_service=nova.image.glance.GlanceImageService"
478add_nova_flag "--ec2_dmz_host=$EC2_DMZ_HOST"
479add_nova_flag "--rabbit_host=$RABBIT_HOST"
Jesse Andrews53ed3872011-10-02 14:28:17 -0400480add_nova_flag "--rabbit_password=$RABBIT_PASSWORD"
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700481add_nova_flag "--glance_api_servers=$GLANCE_HOSTPORT"
Anthony Youngb1bdd5e2011-09-20 09:39:50 -0700482add_nova_flag "--flat_network_bridge=$FLAT_NETWORK_BRIDGE"
Jesse Andrewsd1879c52011-09-16 16:28:13 -0700483if [ -n "$FLAT_INTERFACE" ]; then
484 add_nova_flag "--flat_interface=$FLAT_INTERFACE"
485fi
486if [ -n "$MULTI_HOST" ]; then
487 add_nova_flag "--multi_host=$MULTI_HOST"
488fi
489
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400490# Nova Database
491# ~~~~~~~~~~~~~
492
493# All nova components talk to a central database. We will need to do this step
494# only once for an entire cluster.
495
Anthony Younga0748002011-09-16 21:37:36 -0700496if [[ "$ENABLED_SERVICES" =~ "mysql" ]]; then
497 # (re)create nova database
root40a37002011-09-20 18:06:14 +0000498 mysql -u$MYSQL_USER -p$MYSQL_PASS -e 'DROP DATABASE IF EXISTS nova;'
Anthony Younga0748002011-09-16 21:37:36 -0700499 mysql -u$MYSQL_USER -p$MYSQL_PASS -e 'CREATE DATABASE nova;'
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400500
501 # (re)create nova database
Anthony Younga0748002011-09-16 21:37:36 -0700502 $NOVA_DIR/bin/nova-manage db sync
503
504 # create a small network
termie197d53d2011-09-28 17:18:23 -0700505 $NOVA_DIR/bin/nova-manage network create private $FIXED_RANGE 1 $FIXED_NETWORK_SIZE
Anthony Younga0748002011-09-16 21:37:36 -0700506
507 # create some floating ips
508 $NOVA_DIR/bin/nova-manage floating create $FLOATING_RANGE
509fi
510
511
Jesse Andrewse8d9cd82011-09-13 15:16:26 -0700512# Keystone
513# --------
514
Anthony Young70dc5e02011-09-15 16:52:43 -0700515if [[ "$ENABLED_SERVICES" =~ "key" ]]; then
516 # (re)create keystone database
root40a37002011-09-20 18:06:14 +0000517 mysql -u$MYSQL_USER -p$MYSQL_PASS -e 'DROP DATABASE IF EXISTS keystone;'
Anthony Young70dc5e02011-09-15 16:52:43 -0700518 mysql -u$MYSQL_USER -p$MYSQL_PASS -e 'CREATE DATABASE keystone;'
Jesse Andrews75a37652011-09-12 17:09:08 -0700519
Anthony Young70dc5e02011-09-15 16:52:43 -0700520 # FIXME (anthony) keystone should use keystone.conf.example
521 KEYSTONE_CONF=$KEYSTONE_DIR/etc/keystone.conf
Jesse Andrewsbf3868d2011-09-16 11:31:16 -0700522 cp $FILES/keystone.conf $KEYSTONE_CONF
Anthony Young70dc5e02011-09-15 16:52:43 -0700523 sudo sed -e "s,%SQL_CONN%,$BASE_SQL_CONN/keystone,g" -i $KEYSTONE_CONF
Anthony Younge8fed482011-09-26 19:50:43 -0700524 sudo sed -e "s,%DEST%,$DEST,g" -i $KEYSTONE_CONF
Anthony Young3a093122011-09-13 19:01:45 +0000525
Jesse Andrewscbe98d52011-10-02 17:47:32 -0400526 # keystone_data.sh creates our admin user and our ``SERVICE_TOKEN``.
Anthony Youngec21d932011-09-16 16:05:55 -0700527 KEYSTONE_DATA=$KEYSTONE_DIR/bin/keystone_data.sh
528 cp $FILES/keystone_data.sh $KEYSTONE_DATA
529 sudo sed -e "s,%HOST_IP%,$HOST_IP,g" -i $KEYSTONE_DATA
Jesse Andrewsb96871e2011-10-02 09:02:46 -0700530 sudo sed -e "s,%SERVICE_TOKEN%,$SERVICE_TOKEN,g" -i $KEYSTONE_DATA
Jesse Andrews89358af2011-10-02 14:11:17 -0400531 sudo sed -e "s,%ADMIN_PASSWORD%,$ADMIN_PASSWORD,g" -i $KEYSTONE_DATA
Anthony Young70dc5e02011-09-15 16:52:43 -0700532 # initialize keystone with default users/endpoints
Anthony Youngec21d932011-09-16 16:05:55 -0700533 BIN_DIR=$KEYSTONE_DIR/bin bash $KEYSTONE_DATA
Anthony Young70dc5e02011-09-15 16:52:43 -0700534fi
Jesse Andrews75a37652011-09-12 17:09:08 -0700535
Jesse Andrews75a37652011-09-12 17:09:08 -0700536
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700537# Launch Services
538# ===============
Jesse Andrews30f68e92011-09-13 00:59:54 -0700539
Jesse Andrews1c1d1502011-09-12 19:29:56 -0700540# nova api crashes if we start it with a regular screen command,
541# so send the start command by forcing text into the window.
Jesse Andrewsdfcd2002011-09-13 13:17:22 -0700542# Only run the services specified in ``ENABLED_SERVICES``
543
Jesse Andrews1f717602011-09-16 15:18:53 -0700544# our screen helper to launch a service in a hidden named screen
Jesse Andrews1c1d1502011-09-12 19:29:56 -0700545function screen_it {
Jesse Andrews1f717602011-09-16 15:18:53 -0700546 NL=`echo -ne '\015'`
Anthony Young292e46d2011-09-13 11:28:56 -0700547 if [[ "$ENABLED_SERVICES" =~ "$1" ]]; then
548 screen -S nova -X screen -t $1
549 screen -S nova -p $1 -X stuff "$2$NL"
550 fi
Jesse Andrews1c1d1502011-09-12 19:29:56 -0700551}
552
Jesse Andrewsa16e5e92011-09-16 16:30:55 -0700553# create a new named screen to run processes in
554screen -d -m -S nova -t nova
555sleep 1
556
Jesse Andrews644b8e82011-10-02 17:50:41 -0400557# launch the glance registery service
Anthony Youngd000b222011-09-19 14:46:53 -0700558if [[ "$ENABLED_SERVICES" =~ "g-reg" ]]; then
559 screen_it g-reg "cd $GLANCE_DIR; bin/glance-registry --config-file=etc/glance-registry.conf"
560fi
561
Jesse Andrews644b8e82011-10-02 17:50:41 -0400562# launch the glance api and wait for it to answer before continuing
Anthony Youngd000b222011-09-19 14:46:53 -0700563if [[ "$ENABLED_SERVICES" =~ "g-api" ]]; then
564 screen_it g-api "cd $GLANCE_DIR; bin/glance-api --config-file=etc/glance-api.conf"
565 while ! wget -q -O- http://$GLANCE_HOSTPORT; do
566 echo "Waiting for g-api ($GLANCE_HOSTPORT) to start..."
567 sleep 1
568 done
569fi
570
Jesse Andrews644b8e82011-10-02 17:50:41 -0400571# launch the keystone and wait for it to answer before continuing
Anthony Youngd000b222011-09-19 14:46:53 -0700572if [[ "$ENABLED_SERVICES" =~ "key" ]]; then
Anthony Youngf33796e2011-09-22 00:14:12 -0700573 screen_it key "cd $KEYSTONE_DIR && $KEYSTONE_DIR/bin/keystone --config-file $KEYSTONE_CONF -d"
Anthony Youngd000b222011-09-19 14:46:53 -0700574 while ! wget -q -O- http://127.0.0.1:5000; do
575 echo "Waiting for keystone to start..."
576 sleep 1
577 done
578fi
579
Jesse Andrews644b8e82011-10-02 17:50:41 -0400580# launch the nova-api and wait for it to answer before continuing
Anthony Youngd000b222011-09-19 14:46:53 -0700581if [[ "$ENABLED_SERVICES" =~ "n-api" ]]; then
Anthony Young9bf3d762011-09-20 09:51:16 -0700582 screen_it n-api "cd $NOVA_DIR && $NOVA_DIR/bin/nova-api"
Anthony Youngd000b222011-09-19 14:46:53 -0700583 while ! wget -q -O- http://127.0.0.1:8774; do
584 echo "Waiting for nova-api to start..."
585 sleep 1
586 done
587fi
root40a37002011-09-20 18:06:14 +0000588# Launching nova-compute should be as simple as running ``nova-compute`` but
589# have to do a little more than that in our script. Since we add the group
Jesse Andrews1f717602011-09-16 15:18:53 -0700590# ``libvirtd`` to our user in this script, when nova-compute is run it is
root40a37002011-09-20 18:06:14 +0000591# within the context of our original shell (so our groups won't be updated).
Jesse Andrews1f717602011-09-16 15:18:53 -0700592# We can send the command nova-compute to the ``newgrp`` command to execute
593# in a specific context.
Anthony Young9bf3d762011-09-20 09:51:16 -0700594screen_it n-cpu "cd $NOVA_DIR && echo $NOVA_DIR/bin/nova-compute | newgrp libvirtd"
595screen_it n-net "cd $NOVA_DIR && $NOVA_DIR/bin/nova-network"
596screen_it n-sch "cd $NOVA_DIR && $NOVA_DIR/bin/nova-scheduler"
Anthony Young1c598da2011-10-05 08:07:53 -0700597screen_it n-vnc "cd $NOVNC_DIR && ./utils/nova-wsproxy.py 6080 --web . --flagfile=../nova/bin/nova.conf"
Anthony Young9bf3d762011-09-20 09:51:16 -0700598screen_it dash "cd $DASH_DIR && sudo /etc/init.d/apache2 restart; sudo tail -f /var/log/apache2/error.log"
Jesse Andrews75a37652011-09-12 17:09:08 -0700599
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700600# Install Images
601# ==============
Jesse Andrewse49b8bd2011-09-12 18:08:04 -0700602
Jesse Andrews85d9be32011-10-03 00:01:28 -0400603# Upload a couple images to glance. **TTY** is a simple small image that use the
604# lets you login to it with username/password of user/password. TTY is useful
605# for basic functionality. We all include an Ubuntu cloud build of **Natty**.
606# Natty uses cloud-init, supporting login via keypair and sending scripts as
Jesse Andrews5372f432011-10-03 01:08:24 -0400607# userdata.
608#
609# Read more about cloud-init at https://help.ubuntu.com/community/CloudInit
Jesse Andrews08e8b742011-10-02 23:42:56 -0400610
Jesse Andrews85d9be32011-10-03 00:01:28 -0400611if [[ "$ENABLED_SERVICES" =~ "g-reg" ]]; then
612 # create a directory for the downloadedthe images tarballs.
Jesse Andrews08e8b742011-10-02 23:42:56 -0400613 mkdir -p $FILES/images
614
Jesse Andrews5372f432011-10-03 01:08:24 -0400615 # Debug Image (TTY)
616 # -----------------
617
618 # Downloads the image (ami/aki/ari style), then extracts it. Upon extraction
619 # we upload to glance with the glance cli tool. TTY is a stripped down
620 # version of ubuntu.
Jesse Andrews543d7d42011-09-16 14:16:36 -0700621 if [ ! -f $FILES/tty.tgz ]; then
622 wget -c http://images.ansolabs.com/tty.tgz -O $FILES/tty.tgz
Anthony Young70dc5e02011-09-15 16:52:43 -0700623 fi
Jesse Andrewse49b8bd2011-09-12 18:08:04 -0700624
Anthony Young70dc5e02011-09-15 16:52:43 -0700625 # extract ami-tty/image, aki-tty/image & ari-tty/image
Jesse Andrews74e965f2011-09-16 14:19:46 -0700626 tar -zxf $FILES/tty.tgz -C $FILES/images
Anthony Young70dc5e02011-09-15 16:52:43 -0700627
Jesse Andrews5372f432011-10-03 01:08:24 -0400628 # Use glance client to add the kernel, ramdisk and finally the root
629 # filesystem. We parse the results of the uploads to get glance IDs of the
630 # ramdisk and kernel and use them for the root filesystem.
Jesse Andrewsa5e5f2a2011-10-02 21:07:08 -0400631 RVAL=`glance add -A $SERVICE_TOKEN name="tty-kernel" is_public=true container_format=aki disk_format=aki < $FILES/images/aki-tty/image`
632 KERNEL_ID=`echo $RVAL | cut -d":" -f2 | tr -d " "`
633 RVAL=`glance add -A $SERVICE_TOKEN name="tty-ramdisk" is_public=true container_format=ari disk_format=ari < $FILES/images/ari-tty/image`
634 RAMDISK_ID=`echo $RVAL | cut -d":" -f2 | tr -d " "`
Jesse Andrews014e9132011-10-02 19:23:22 -0400635 glance add -A $SERVICE_TOKEN name="tty" is_public=true container_format=ami disk_format=ami kernel_id=$KERNEL_ID ramdisk_id=$RAMDISK_ID < $FILES/images/ami-tty/image
Jesse Andrews08e8b742011-10-02 23:42:56 -0400636
Jesse Andrews5372f432011-10-03 01:08:24 -0400637 # Ubuntu 11.04 aka Natty
638 # ----------------------
Jesse Andrews08e8b742011-10-02 23:42:56 -0400639
Jesse Andrews5372f432011-10-03 01:08:24 -0400640 # Downloaded from ubuntu enterprise cloud images. This
Jesse Andrews08e8b742011-10-02 23:42:56 -0400641 # image doesn't use the ramdisk functionality
Jesse Andrews08e8b742011-10-02 23:42:56 -0400642 if [ ! -f $FILES/natty.tgz ]; then
643 wget -c http://uec-images.ubuntu.com/natty/current/natty-server-cloudimg-amd64.tar.gz -O $FILES/natty.tgz
644 fi
645
646 tar -zxf $FILES/natty.tgz -C $FILES/images
647
648 RVAL=`glance add -A $SERVICE_TOKEN name="uec-natty-kernel" is_public=true container_format=aki disk_format=aki < $FILES/images/natty-server-cloudimg-amd64-vmlinuz-virtual`
649 KERNEL_ID=`echo $RVAL | cut -d":" -f2 | tr -d " "`
650 glance add -A $SERVICE_TOKEN name="uec-natty" is_public=true container_format=ami disk_format=ami kernel_id=$KERNEL_ID < $FILES/images/natty-server-cloudimg-amd64.img
651
Jesse Andrewse49b8bd2011-09-12 18:08:04 -0700652fi
Jesse Andrews24859062011-09-15 21:28:23 -0700653
654# Using the cloud
655# ===============
656
657# If you installed the dashboard on this server, then you should be able
root40a37002011-09-20 18:06:14 +0000658# to access the site using your browser.
Jesse Andrews24859062011-09-15 21:28:23 -0700659if [[ "$ENABLED_SERVICES" =~ "dash" ]]; then
660 echo "dashboard is now available at http://$HOST_IP/"
661fi
662
663# If keystone is present, you can point nova cli to this server
664if [[ "$ENABLED_SERVICES" =~ "key" ]]; then
665 echo "keystone is serving at http://$HOST_IP:5000/v2.0/"
666 echo "examples on using novaclient command line is in exercise.sh"
Jesse Andrews89358af2011-10-02 14:11:17 -0400667 echo "the default users are: admin and demo"
668 echo "the password: $ADMIN_PASSWORD"
Jesse Andrews24859062011-09-15 21:28:23 -0700669fi
termie523c4052011-09-28 19:49:40 -0500670
Jesse Andrews5372f432011-10-03 01:08:24 -0400671# Fin
672# ===
termie523c4052011-09-28 19:49:40 -0500673
Scott Moser7c481182011-10-07 13:50:21 +0000674
675) 2>&1 | tee "${LOGFILE}"
676
677# because of the way pipes work, the left side of the pipe may
678# have failed, but 'tee' will succeed. We need to check that.
679for ret in "${PIPESTATUS[@]}"; do
680 [ $ret -eq 0 ] || exit $ret
681done
682
Scott Moserc4e47ab2011-10-07 13:29:29 +0000683# indicate how long this took to run (bash maintained variable 'SECONDS')
Scott Moser7c481182011-10-07 13:50:21 +0000684echo "stack.sh completed in $SECONDS seconds." | tee -a "${LOGFILE}"
685
686exit 0