Remove tools/openstack*

Remove the tools/openstack* scripts - they're no longer maintained,
and there are several alternative documented ways to install openstack
with Heat now, so we should direct people to those instead.

Change-Id: I649f384f6acc3d7edab25f104f8e9d7e0050f2c1
Partial-Bug: #1182428
This commit is contained in:
Steven Hardy 2013-09-30 22:30:04 +01:00
parent b5b522af58
commit f4a9c0fcc6
2 changed files with 0 additions and 728 deletions

View File

@ -1,385 +0,0 @@
#!/bin/bash
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2012, Red Hat, Inc.
# Angus Salkeld <asalkeld@redhat.com>
# Steven Dake <sdake@redhat.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# sleep 1 = systemd's definition of start is different from mine
BASE_DIR=`dirname $0`
if [[ $1 = '--with-cinder' ]]; then
with_cinder=1
else
with_cinder=0
fi
FEDORA_VERSION=$(cat /etc/fedora-release | awk '{print $3}')
if [[ $FEDORA_VERSION -gt 17 || $with_cinder -eq 1 ]]; then
VOLUME_SERVICE="openstack-cinder"
VOLUME_PATH="/var/lib/cinder/cinder-volumes.img"
VOLUME_NAME="cinder-volumes"
else
VOLUME_SERVICE="openstack-nova"
VOLUME_PATH="/var/lib/nova/nova-volumes.img"
VOLUME_NAME="nova-volumes"
fi
action=$1
if [ -z "$action" ]
then
echo "openstack [start|stop|install|erase|status]"
echo
echo "This tool is designed to control OpenStack on a Fedora 16+ system"
echo
echo "start - Starts OpenStack"
echo "stop - Stops OpenStack"
echo "restart - Restart OpenStack"
echo "install - Installs a fresh OpenStack system with Keystone from RPM repostories"
echo "erase - permanently destroys an existing installation of OpenStack"
echo "status - show service status for all required OpenStack services"
fi
os_dist='unknown'
function check_os_version() {
#determine which OpenStack version we'll be running
os_version=$(rpm -q openstack-nova-common --qf='%{VERSION}')
case $os_version in
2012.1|2012.1.*) os_dist='essex';;
2012.2|2012.2.*) os_dist='folsom';;
2013.1|2013.1.*) os_dist='grizzly';;
*) echo 'Could not detect installed OpenStack version';;
esac
echo "Detected os_version $os_version os_dist=$os_dist"
}
function os_status() {
for service in ${OS_SERVICES[@]}
do
output=$(systemctl show "$service.service" --property=ActiveState)
running=(${output//=/ }) #ActiveState=active
echo "$service ${running[1]}" | awk '{ printf "%-40s %s\n", $1, $2}'
done
}
OS_STATUS="OK"
function os_check_status() {
# If a service is not running, we try again up to MAX_TRIES times
MAX_TRIES=5
for service in ${OS_SERVICES[@]}
do
attempts=0
while [[ ${attempts} < ${MAX_TRIES} ]]
do
attempts=$((${attempts} + 1))
output=$(systemctl show "$service.service" --property=ActiveState)
running=${output#ActiveState=} #ActiveState=active
if [[ ${running} != "active" ]]
then
echo "Service ${service} does not seem to be running, waiting 1s ${attempts}/${MAX_TRIES}"
OS_STATUS="FAIL ${service} : ${running}"
sleep 1
else
echo "${service} ${running}" | awk '{ printf "%-40s %s\n", $1, $2}'
OS_STATUS="OK"
break
fi
done
# If we get here and OS_STATUS != OK then we return as something failed
if [[ ${OS_STATUS} != "OK" ]]
then
echo "Service ${service} has failed to start, check logs for errors"
break
fi
done
}
function os_start() {
action=start
sudo systemctl $action qpidd.service mysqld.service
sleep 1
sudo systemctl $action openstack-keystone.service tgtd.service
sleep 1
for svc in api registry
do
sudo systemctl $action openstack-glance-$svc.service
done
if ! sudo vgs | grep -q $VOLUME_NAME; then
sudo vgcreate $VOLUME_NAME $(sudo losetup --show -f $VOLUME_PATH)
fi
for svc in api cert objectstore compute scheduler
do
sudo systemctl $action openstack-nova-$svc.service
done
sudo systemctl $action $VOLUME_SERVICE-volume.service
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
for svc in api scheduler
do
sudo systemctl $action $VOLUME_SERVICE-$svc.service
done
fi
# This must be started after openstack-nova-cert due to an SELinux
# policy problem. See https://bugzilla.redhat.com/show_bug.cgi?id=857747
sleep 2
sudo systemctl $action openstack-nova-network.service
# conductor service is new for grizzly
if [ "$os_dist" = 'grizzly' ]; then
sudo systemctl $action openstack-nova-conductor.service
fi
}
function os_stop() {
action=stop
sudo systemctl $action openstack-keystone.service tgtd.service
for svc in api objectstore compute network scheduler cert
do
sudo systemctl $action openstack-nova-$svc.service
done
sudo systemctl $action $VOLUME_SERVICE-volume.service
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
for svc in api scheduler
do
sudo systemctl $action $VOLUME_SERVICE-$svc.service
done
fi
for svc in api registry
do
sudo systemctl $action openstack-glance-$svc.service
done
}
function os_restart() {
action=restart
os_stop
sleep 1
os_start
}
function os_erase() {
for net in `sudo nova-manage network list |
awk '/^[[:digit:]]/ { print $9 }'`
do
sudo nova-manage network delete --uuid $net
done
os_stop
sleep 1
# Kill dnsmasq processes
if find /var/lib/nova/networks -name '*.pid'; then
sudo kill `cat /var/lib/nova/networks/*.pid`
fi
sudo rm -f /var/lib/libvirt/qemu/save/instance-000*
sudo rm -f /var/lib/libvirt/qemu/instance-000*
sudo yum -q -y erase python-glance* python-nova* python-keystone* openstack-swift* openstack-dashboard
sudo systemctl start mysqld.service
sleep 1
sudo openstack-db --yes --service nova --drop $*
sudo openstack-db --yes --service glance --drop $*
sudo openstack-db --yes --service keystone --drop $*
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
sudo openstack-db --yes --service cinder --drop $*
fi
sudo yum -q -y erase openstack-utils
sudo vgchange -an $VOLUME_NAME
sudo losetup -d /dev/loop0
sudo rm -f $VOLUME_PATH
sudo rm -rf /etc/{glance,nova,swift,keystone,openstack-dashboard,cinder} /var/lib/{glance,nova,swift,keystone,cinder} /var/log/{glance,nova,swift,keystone,cinder} /var/run/{glance,nova,swift,keystone,cinder}
rm -f $HOME/.openstack/.keystonerc
}
function os_install() {
sudo yum -q -y groupinstall Virtualization
sudo yum -q -y install openstack-utils openstack-nova openstack-glance openstack-keystone openstack-dashboard scsi-target-utils qpid-cpp-server qpid-cpp-server-daemon $VOLUME_SERVICE
check_os_version
sudo dd if=/dev/zero of=$VOLUME_PATH bs=1M seek=20k count=0
# Note if mysql-server is not installed, this will fail
# and openstack-db --yes will install/start it
sudo systemctl start mysqld.service
sudo systemctl enable libvirtd.service
sudo systemctl start libvirtd.service
sleep 1
# Configure the databases
sudo openstack-db --yes --service nova --init $*
sudo openstack-db --yes --service glance --init $*
sudo openstack-db --yes --service keystone --init $*
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
sudo openstack-db --yes --service cinder --init $*
fi
# Create a keystone RC file
# Note that keystone bug #1073291 "fix" removes a chunk of stuff from
# /usr/share/openstack-keystone/sample_data.sh (called from
# openstack-keystone-sample-data below), so for grizzly we have to align
# our RC file with the hardcoded values, because the password variables
# are now ignored, also the admin tenant is no longer created.
# I raised bug #1166182 to potentially fix this, but for now workaround:
mkdir -p $HOME/.openstack
if [ "$os_dist" = 'grizzly' ]; then
cat > $HOME/.openstack/keystonerc <<EOF
export ADMIN_TOKEN=$(openssl rand -hex 10)
export OS_USERNAME=admin
export OS_PASSWORD=secrete
export OS_TENANT_NAME=demo
export OS_AUTH_URL=http://127.0.0.1:5000/v2.0/
export OS_AUTH_STRATEGY=keystone
EOF
else
cat > $HOME/.openstack/keystonerc <<EOF
export ADMIN_TOKEN=$(openssl rand -hex 10)
export OS_USERNAME=admin
export OS_PASSWORD=verybadpass
export OS_TENANT_NAME=admin
export OS_AUTH_URL=http://127.0.0.1:5000/v2.0/
export OS_AUTH_STRATEGY=keystone
EOF
fi
# Install keystone catalog
source $HOME/.openstack/keystonerc
sudo openstack-config --set /etc/keystone/keystone.conf DEFAULT admin_token $ADMIN_TOKEN
# Need to setup pki on grizzly or you get "Unable to sign token." error
if [ "$os_dist" = 'grizzly' ]; then
keystone-manage pki_setup
chown -R keystone /etc/keystone/ssl/
fi
sudo systemctl start openstack-keystone.service
sleep 1
sudo ADMIN_PASSWORD=$OS_PASSWORD SERVICE_PASSWORD=servicepass openstack-keystone-sample-data
# Configure nova to use keystone
sudo openstack-config --set /etc/nova/api-paste.ini filter:authtoken admin_tenant_name service
sudo openstack-config --set /etc/nova/api-paste.ini filter:authtoken admin_user nova
if [ "$os_dist" = 'grizzly' ]; then
sudo openstack-config --set /etc/nova/api-paste.ini filter:authtoken admin_password nova
else
sudo openstack-config --set /etc/nova/api-paste.ini filter:authtoken admin_password servicepass
fi
sudo openstack-config --set /etc/nova/nova.conf DEFAULT auth_strategy keystone
# Configure glance to use keystone
sudo openstack-config --set /etc/glance/glance-api.conf paste_deploy flavor keystone
sudo openstack-config --set /etc/glance/glance-registry.conf paste_deploy flavor keystone
sudo openstack-config --set /etc/glance/glance-api-paste.ini filter:authtoken admin_tenant_name service
sudo openstack-config --set /etc/glance/glance-api-paste.ini filter:authtoken admin_user glance
if [ "$os_dist" = 'grizzly' ]; then
sudo openstack-config --set /etc/glance/glance-api-paste.ini filter:authtoken admin_password glance
else
sudo openstack-config --set /etc/glance/glance-api-paste.ini filter:authtoken admin_password servicepass
fi
sudo openstack-config --set /etc/glance/glance-registry-paste.ini filter:authtoken admin_tenant_name service
sudo openstack-config --set /etc/glance/glance-registry-paste.ini filter:authtoken admin_user glance
sudo openstack-config --set /etc/glance/glance-registry-paste.ini filter:authtoken admin_password servicepass
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
sudo openstack-config --set /etc/cinder/api-paste.ini filter:authtoken admin_tenant_name service
sudo openstack-config --set /etc/cinder/api-paste.ini filter:authtoken admin_user cinder
sudo openstack-config --set /etc/cinder/api-paste.ini filter:authtoken admin_password servicepass
sudo openstack-config --set /etc/cinder/cinder.conf DEFAULT auth_strategy keystone
# must disable implicit osapi_volume
sudo openstack-config --set /etc/nova/nova.conf DEFAULT enabled_apis ec2,osapi_compute,metadata
sudo openstack-config --set /etc/nova/nova.conf DEFAULT volume_api_class nova.volume.cinder.API
fi
os_stop
sleep 1
sudo rm -rf /var/log/{glance,nova,swift,keystone,cinder}/*
os_start
sleep 1
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
${BASE_DIR}/../bin/cinder-keystone-setup
fi
echo "Installation Complete."
echo "Checking all expected services are running"
os_check_status
if [[ ${OS_STATUS} != "OK" ]]
then
echo "Service failed to start : ${OS_STATUS}, cannot continue"
exit 1
fi
echo "Testing nova and glance. If any errors are displayed, the install failed..."
# Create additional flavors required by heat templates
${BASE_DIR}/nova_create_flavors.sh
nova flavor-list
glance index
echo
echo "note: This tool does not create a network. Creating a network"
echo "depends on your environment. An example network create operation:"
echo
echo " sudo nova-manage network create demonet 10.0.0.0/24 1 256 --bridge=demonetbr0"
echo
echo -e "The network range here should *not* be one used on your existing physical\n network."
echo "It should be a range dedicated for the network that OpenStack will configure."
echo "If 10.0.0.0/24 clashes with your local network, pick another range."
}
OS_SERVICES=(qpidd mysqld openstack-keystone tgtd openstack-glance-api openstack-glance-registry openstack-nova-api openstack-nova-objectstore openstack-nova-compute openstack-nova-network openstack-nova-scheduler openstack-nova-cert $VOLUME_SERVICE-volume)
if [[ $VOLUME_SERVICE == "openstack-cinder" ]]; then
OS_SERVICES+=($VOLUME_SERVICE-api $VOLUME_SERVICE-scheduler)
fi
check_os_version
if [ "$os_dist" = 'grizzly' ]; then
OS_SERVICES+=(openstack-nova-conductor)
fi
case $action in
"")
;;
start)
os_start
;;
stop)
os_stop
;;
restart)
os_restart
;;
erase)
shift
os_erase $*
;;
install)
shift
os_install $*
;;
status)
os_status
;;
*)
echo "The action \"$action\" is not supported."
;;
esac

View File

@ -1,343 +0,0 @@
#!/bin/bash
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright (C) 2012, Red Hat, Inc.
# Steven Hardy <shardy@redhat.com>
# Based on tools/openstack
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
BASE_DIR=`dirname $0`
action=$1
if [ -z "$action" ]
then
echo "openstack [start|stop|install|erase|status]"
echo
echo "This tool is designed to control OpenStack on an Ubuntu 12.XX system"
echo "It installs a minimal openstack environment in order to demonstrate heat functionality"
echo "Note swift and the horizon dashboard are not installed"
echo
echo "start - Starts OpenStack"
echo "stop - Stops OpenStack"
echo "restart - Restart OpenStack"
echo "install - Installs a fresh OpenStack system with Keystone from repostories"
echo "erase - permanently destroys an existing installation of OpenStack"
fi
BASE_SERVICES="tgt mysql"
OS_SERVICES="nova-compute nova-cert nova-vncproxy nova-objectstore keystone nova-api glance-registry nova-network nova-scheduler nova-volume glance-api keystone"
OS_REQ_PACKAGES="bridge-utils rabbitmq-server memcached python-memcache kvm libvirt-bin tgt open-iscsi open-iscsi-utils mysql-server python-mysqldb"
OS_GLANCE_PACKAGES="glance glance-api glance-client glance-common glance-registry python-glance"
OS_KEYSTONE_PACKAGES="keystone python-keystone python-keystoneclient"
OS_NOVA_PACKAGES="nova-api nova-cert nova-common nova-compute nova-compute-kvm nova-doc nova-network nova-objectstore nova-scheduler nova-vncproxy nova-volume python-nova python-novaclient"
INSTALL_CMD="sudo aptitude -y install"
UNINSTALL_CMD="sudo aptitude -y purge"
os_status () {
for service in ${BASE_SERVICES}
do
output=$(initctl status ${service} | awk '{print $2}' | sed "s/,$//")
echo "$service ${output}" | awk '{ printf "%-40s %s\n", $1, $2}'
done
for service in ${OS_SERVICES}
do
output=$(initctl status ${service} | awk '{print $2}' | sed "s/,$//")
echo "$service ${output}" | awk '{ printf "%-40s %s\n", $1, $2}'
done
}
OS_STATUS="OK"
os_check_status () {
# If a service is not running, we try again up to MAX_TRIES times
MAX_TRIES=5
for service in ${OS_SERVICES}
do
attempts=0
while [[ ${attempts} < ${MAX_TRIES} ]]
do
attempts=$((${attempts} + 1))
output=$(initctl status $service)
running=$(initctl status $service | cut -d"/" -f2 | sed "s/,.*$//")
if [[ ${running} != "running" ]]
then
echo "Service ${service} does not seem to be running, waiting 1s ${attempts}/${MAX_TRIES}"
OS_STATUS="FAIL ${service} : ${running}"
sleep 1
else
echo "${service} ${running}" | awk '{ printf "%-40s %s\n", $1, $2}'
OS_STATUS="OK"
break
fi
done
# If we get here and OS_STATUS != OK then we return as something failed
if [[ ${OS_STATUS} != "OK" ]]
then
echo "Service ${service} has failed to start, check logs for errors"
break
fi
done
}
DBPW=""
db_get_pw() {
# If we're passed a -r rootpw argument, use it,
# Otherwise, prompt for a password
# Note we use the service name for the password, which is the default
# behavior of the Fedora openstack-utils openstack-db script
# Obviously this is only suitable for a development/demo installation
if [ $# -eq 2 ]
then
if [ $1 = "-r" ]
then
DBPW=$2
fi
else
echo "Enter mysql root password"
read -s DBPW
fi
}
db_setup () {
db_get_pw $@
for APP in nova glance keystone
do
MYSQL_APP_PW=${APP}
echo "Creating '$APP' database." >&2
mysql -u root --password=${DBPW} <<EOF
CREATE DATABASE $APP;
CREATE USER '$APP'@'localhost' IDENTIFIED BY '${MYSQL_APP_PW}';
CREATE USER '$APP'@'%' IDENTIFIED BY '${MYSQL_APP_PW}';
GRANT ALL ON $APP.* TO '$APP'@'localhost';
GRANT ALL ON $APP.* TO '$APP'@'%';
flush privileges;
EOF
done
}
db_drop () {
db_get_pw $@
for APP in nova glance keystone
do
MYSQL_APP_PW=${APP}
echo "Dropping '$APP' database." >&2
mysql -u root --password=${DBPW} <<EOF
DROP USER '$APP'@'localhost';
DROP USER '$APP'@'%';
DROP DATABASE $APP;
flush privileges;
EOF
done
}
os_start () {
sudo rabbitmqctl start
sleep 1
if ! sudo vgs | grep -q nova-volumes
then
sudo vgcreate nova-volumes $(sudo losetup --show -f /var/lib/nova/nova-volumes.img)
fi
for service in ${BASE_SERVICES}
do
initctl start ${service}
done
for service in ${OS_SERVICES}
do
initctl start ${service}
done
}
os_stop () {
action=stop
for service in ${OS_SERVICES}
do
echo "initctl stop ${service}"
initctl stop ${service}
done
}
os_restart () {
action=restart
os_stop
sleep 1
os_start
}
os_erase () {
for net in `sudo nova-manage network list |
awk '/^[[:digit:]]/ { print $9 }'`
do
sudo nova-manage network delete --uuid $net
done
os_stop
sleep 1
# Kill dnsmasq processes
if find /var/lib/nova/networks -name '*.pid'; then
sudo kill `cat /var/lib/nova/networks/*.pid`
fi
sudo rm -f /var/lib/libvirt/qemu/save/instance-000*
sudo rm -f /var/lib/libvirt/qemu/instance-000*
echo "$UNINSTALL_CMD $OS_GLANCE_PACKAGES" >&2
$UNINSTALL_CMD $OS_GLANCE_PACKAGES
echo "$UNINSTALL_CMD $OS_NOVA_PACKAGES" >&2
$UNINSTALL_CMD $OS_NOVA_PACKAGES
echo "$UNINSTALL_CMD $OS_KEYSTONE_PACKAGES" >&2
$UNINSTALL_CMD $OS_KEYSTONE_PACKAGES
db_drop $@
sudo vgchange -an nova-volumes
sudo losetup -d /dev/loop0
sudo rm -f /var/lib/nova/nova-volumes.img
sudo rm -rf /etc/{glance,nova,swift,keystone,openstack-dashboard} /var/lib/{glance,nova,swift,keystone} /var/log/{glance,nova,swift,keystone} /var/run/{glance,nova,swift,keystone}
rm -f $HOME/.openstack/.keystonerc
}
get_id () {
echo `$@ | awk '/ id / { print $4 }'`
}
os_install () {
echo "Installing prerequisite packages" >&2
${INSTALL_CMD} ${OS_REQ_PACKAGES}
echo "Installing Glance packages" >&2
${INSTALL_CMD} ${OS_GLANCE_PACKAGES}
echo "Installing Keystone packages" >&2
${INSTALL_CMD} ${OS_KEYSTONE_PACKAGES}
echo "Installing Nova packages" >&2
${INSTALL_CMD} ${OS_NOVA_PACKAGES}
echo "Setting up /var/lib/nova/nova-volumes.img" >&2
sudo dd if=/dev/zero of=/var/lib/nova/nova-volumes.img bs=1M seek=20k count=0
# Configure the databases
db_setup $*
# Create a keystone RC file
mkdir -p $HOME/.openstack
TOKEN=$(openssl rand -hex 10)
cat > $HOME/.openstack/keystonerc <<EOF
export ADMIN_TOKEN=$TOKEN
export OS_USERNAME=admin
export OS_PASSWORD=verybadpass
export OS_TENANT_NAME=admin
export OS_AUTH_URL=http://127.0.0.1:5000/v2.0/
export OS_AUTH_STRATEGY=keystone
export ADMIN_PASSWORD=$OS_PASSWORD
EOF
# Configure keystone
source $HOME/.openstack/keystonerc
sudo cp /etc/keystone/keystone.conf /etc/keystone/keystone.conf.bak
sudo -E sed -i "s/^admin_token = ADMIN/admin_token = $ADMIN_TOKEN/" /etc/keystone/keystone.conf
sudo sed -i "s/^connection =.*$/connection = mysql:\/\/keystone:keystone@127.0.0.1\/keystone/" /etc/keystone/keystone.conf
sudo sed -i "/^\[catalog\]/a template_file = /etc/keystone/default_catalog.templates" /etc/keystone/keystone.conf
keystone-manage db_sync
sudo initctl restart keystone
sleep 5
# Create keystone sample data (users/roles/tenants)
ENABLE_ENDPOINTS=1 /usr/share/keystone/sample_data.sh
# Configure nova to use keystone
SERVICE_PASSWORD=$OS_PASSWORD
sudo sed -i "s/^admin_tenant_name = %SERVICE_TENANT_NAME%/admin_tenant_name = service/" /etc/nova/api-paste.ini
sudo sed -i "s/admin_user = %SERVICE_USER%/admin_user = nova/" /etc/nova/api-paste.ini
sudo sed -i "s/admin_password = %SERVICE_PASSWORD%/admin_password = $SERVICE_PASSWORD/" /etc/nova/api-paste.ini
sudo echo "--auth_strategy = keystone" >> /etc/nova/nova.conf
sudo echo "--sql_connection=mysql://nova:nova@127.0.0.1/nova" >> /etc/nova/nova.conf
nova-manage db sync
# Configure glance to use keystone
sudo sed -i "s/^admin_tenant_name = %SERVICE_TENANT_NAME%/admin_tenant_name = service/" /etc/glance/glance-api-paste.ini
sudo sed -i "s/admin_user = %SERVICE_USER%/admin_user = glance/" /etc/glance/glance-api-paste.ini
sudo sed -i "s/admin_password = %SERVICE_PASSWORD%/admin_password = $SERVICE_PASSWORD/" /etc/glance/glance-api-paste.ini
sudo sed -i "s/^admin_tenant_name = %SERVICE_TENANT_NAME%/admin_tenant_name = service/" /etc/glance/glance-registry-paste.ini
sudo sed -i "s/admin_user = %SERVICE_USER%/admin_user = glance/" /etc/glance/glance-registry-paste.ini
sudo sed -i "s/admin_password = %SERVICE_PASSWORD%/admin_password = $SERVICE_PASSWORD/" /etc/glance/glance-registry-paste.ini
sed -i "s/^sql_connection =.*$/sql_connection = mysql:\/\/glance:glance@127.0.0.1\/glance/" /etc/glance/glance-registry.conf
cat >> /etc/glance/glance-registry.conf << EOF
[paste_deploy]
flavor = keystone
EOF
cat >> /etc/glance/glance-api.conf << EOF
[paste_deploy]
flavor = keystone
EOF
glance-manage version_control 0
glance-manage db_sync
# Restart all services and clear logfiles
os_stop
sleep 1
sudo rm -rf /var/log/{glance,nova,swift,keystone}/*
os_start
sleep 1
echo "Installation Complete."
echo "Checking all expected services are running"
os_check_status
if [[ ${OS_STATUS} != "OK" ]]
then
echo "Service failed to start : ${OS_STATUS}, cannot continue"
exit 1
fi
echo "Testing nova and glance. If any errors are displayed, the install failed..."
# Create additional flavors required by heat templates
${BASE_DIR}/nova_create_flavors.sh
nova flavor-list
glance index
echo
echo "note: This tool does not create a network. Creating a network"
echo "depends on your environment. An example network create operation:"
echo
echo " sudo nova-manage network create --label=demonet --fixed_range_v4=10.0.0.0/24 --bridge=demonetbr0 --bridge_interface=eth0"
echo
echo -e "The network range here should *not* be one used on your existing physical\n network."
echo "It should be a range dedicated for the network that OpenStack will configure."
echo "If 10.0.0.0/24 clashes with your local network, pick another range."
echo "--bridge_interface argument should be a physical device to be bridged, eth0 in this example"
}
case $action in
"")
;;
start)
os_start
;;
stop)
os_stop
;;
restart)
os_restart
;;
erase)
shift
os_erase $*
;;
install)
shift
os_install $*
;;
status)
os_status
;;
*)
echo "The action \"$action\" is not supported."
;;
esac