2015-12-13 00:07:18 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-04-18 21:32:29 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
cd
|
2015-12-13 00:07:18 +01:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y git make mercurial
|
|
|
|
|
2016-04-18 21:32:29 +02:00
|
|
|
sudo wget -O /usr/local/bin/gimme https://raw.githubusercontent.com/travis-ci/gimme/master/gimme
|
|
|
|
sudo chmod +x /usr/local/bin/gimme
|
|
|
|
gimme 1.6 >> .bashrc
|
2015-12-13 00:07:18 +01:00
|
|
|
|
|
|
|
mkdir ~/go
|
2016-04-18 21:32:29 +02:00
|
|
|
eval "$(/usr/local/bin/gimme 1.6)"
|
2015-12-13 00:07:18 +01:00
|
|
|
echo 'export GOPATH=$HOME/go' >> .bashrc
|
|
|
|
export GOPATH=$HOME/go
|
|
|
|
|
2016-04-18 21:32:29 +02:00
|
|
|
export PATH=$PATH:$HOME/terraform:$HOME/go/bin
|
|
|
|
echo 'export PATH=$PATH:$HOME/terraform:$HOME/go/bin' >> .bashrc
|
|
|
|
source .bashrc
|
|
|
|
|
2015-12-13 00:07:18 +01:00
|
|
|
go get github.com/hashicorp/terraform
|
|
|
|
|
2016-04-18 21:32:29 +02:00
|
|
|
git clone https://git.openstack.org/openstack-dev/devstack -b stable/mitaka
|
2015-12-13 00:07:18 +01:00
|
|
|
cd devstack
|
|
|
|
cat >local.conf <<EOF
|
|
|
|
[[local|localrc]]
|
|
|
|
# OpenStack version
|
2016-04-18 21:32:29 +02:00
|
|
|
OPENSTACK_VERSION="mitaka"
|
2015-12-13 00:07:18 +01:00
|
|
|
|
|
|
|
# devstack password
|
|
|
|
DEVSTACK_PASSWORD="password"
|
|
|
|
|
|
|
|
# Configure passwords and the Swift Hash
|
|
|
|
MYSQL_PASSWORD=\$DEVSTACK_PASSWORD
|
|
|
|
RABBIT_PASSWORD=\$DEVSTACK_PASSWORD
|
|
|
|
SERVICE_TOKEN=\$DEVSTACK_PASSWORD
|
|
|
|
ADMIN_PASSWORD=\$DEVSTACK_PASSWORD
|
|
|
|
SERVICE_PASSWORD=\$DEVSTACK_PASSWORD
|
|
|
|
SWIFT_HASH=\$DEVSTACK_PASSWORD
|
|
|
|
|
|
|
|
# Configure the stable OpenStack branches used by DevStack
|
|
|
|
# For stable branches see
|
|
|
|
# http://git.openstack.org/cgit/openstack-dev/devstack/refs/
|
|
|
|
CINDER_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
CEILOMETER_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
GLANCE_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
HEAT_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
HORIZON_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
KEYSTONE_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
NEUTRON_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
NOVA_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
SWIFT_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
ZAQAR_BRANCH=stable/\$OPENSTACK_VERSION
|
|
|
|
|
|
|
|
# Enable Swift
|
|
|
|
enable_service s-proxy
|
|
|
|
enable_service s-object
|
|
|
|
enable_service s-container
|
|
|
|
enable_service s-account
|
|
|
|
|
|
|
|
# Disable Nova Network and enable Neutron
|
|
|
|
disable_service n-net
|
|
|
|
enable_service q-svc
|
|
|
|
enable_service q-agt
|
|
|
|
enable_service q-dhcp
|
|
|
|
enable_service q-l3
|
|
|
|
enable_service q-meta
|
2016-06-11 06:17:21 +02:00
|
|
|
enable_service q-flavors
|
|
|
|
|
|
|
|
# Disable Neutron metering
|
|
|
|
disable_service q-metering
|
|
|
|
|
|
|
|
# Enable LBaaS V1
|
|
|
|
#enable_service q-lbaas
|
|
|
|
|
|
|
|
# Enable FWaaS
|
2015-12-13 00:07:18 +01:00
|
|
|
enable_service q-fwaas
|
|
|
|
|
2016-06-11 06:17:21 +02:00
|
|
|
# Enable LBaaS v2
|
|
|
|
enable_plugin neutron-lbaas https://git.openstack.org/openstack/neutron-lbaas stable/\$OPENSTACK_VERSION
|
|
|
|
enable_plugin octavia https://git.openstack.org/openstack/octavia stable/\$OPENSTACK_VERSION
|
|
|
|
enable_service q-lbaasv2
|
|
|
|
enable_service octavia
|
|
|
|
enable_service o-cw
|
|
|
|
enable_service o-hk
|
|
|
|
enable_service o-hm
|
|
|
|
enable_service o-api
|
|
|
|
|
2016-04-18 21:32:29 +02:00
|
|
|
# Enable Trove
|
|
|
|
enable_plugin trove git://git.openstack.org/openstack/trove.git stable/\$OPENSTACK_VERSION
|
|
|
|
enable_service trove,tr-api,tr-tmgr,tr-cond
|
|
|
|
|
|
|
|
# Disable Temptest
|
2015-12-13 00:07:18 +01:00
|
|
|
disable_service tempest
|
|
|
|
|
|
|
|
# Disable Horizon
|
|
|
|
disable_service horizon
|
|
|
|
|
2016-06-11 06:17:21 +02:00
|
|
|
# Disable Keystone v2
|
|
|
|
#ENABLE_IDENTITY_V2=False
|
|
|
|
|
|
|
|
# Enable SSL/tls
|
|
|
|
#enable_service tls-proxy
|
|
|
|
#USE_SSL=True
|
|
|
|
|
2015-12-13 00:07:18 +01:00
|
|
|
# Enable Ceilometer
|
|
|
|
#enable_service ceilometer-acompute
|
|
|
|
#enable_service ceilometer-acentral
|
|
|
|
#enable_service ceilometer-anotification
|
|
|
|
#enable_service ceilometer-collector
|
|
|
|
#enable_service ceilometer-alarm-evaluator
|
|
|
|
#enable_service ceilometer-alarm-notifier
|
|
|
|
#enable_service ceilometer-api
|
|
|
|
|
|
|
|
# Enable Zaqar
|
|
|
|
#enable_plugin zaqar https://github.com/openstack/zaqar
|
|
|
|
#enable_service zaqar-server
|
|
|
|
|
|
|
|
# Automatically download and register a VM image that Heat can launch
|
|
|
|
# For more information on Heat and DevStack see
|
|
|
|
# http://docs.openstack.org/developer/heat/getting_started/on_devstack.html
|
|
|
|
#IMAGE_URLS+=",http://cloud.fedoraproject.org/fedora-20.x86_64.qcow2"
|
2016-04-18 21:32:29 +02:00
|
|
|
#IMAGE_URLS+=",https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img"
|
2015-12-13 00:07:18 +01:00
|
|
|
|
|
|
|
# Logging
|
|
|
|
LOGDAYS=1
|
|
|
|
LOGFILE=/opt/stack/logs/stack.sh.log
|
|
|
|
LOGDIR=/opt/stack/logs
|
|
|
|
EOF
|
|
|
|
./stack.sh
|
|
|
|
|
2016-06-11 06:17:21 +02:00
|
|
|
# Patch openrc
|
|
|
|
#cat >> openrc <<EOF
|
|
|
|
#
|
|
|
|
# Currently, in order to use openstackclient with Identity API v3,
|
|
|
|
# we need to set the domain which the user and project belong to.
|
|
|
|
#if [ "$OS_IDENTITY_API_VERSION" = "3" ]; then
|
|
|
|
# export OS_USER_DOMAIN_ID=${OS_USER_DOMAIN_ID:-"default"}
|
|
|
|
# export OS_PROJECT_DOMAIN_ID=${OS_PROJECT_DOMAIN_ID:-"default"}
|
|
|
|
#fi
|
|
|
|
#EOF
|
|
|
|
|
2015-12-13 00:07:18 +01:00
|
|
|
# Prep the testing environment by creating the required testing resources and environment variables
|
|
|
|
source openrc admin
|
|
|
|
wget http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img
|
|
|
|
glance image-create --name CirrOS --disk-format qcow2 --container-format bare < cirros-0.3.4-x86_64-disk.img
|
|
|
|
nova flavor-create m1.tform 99 512 5 1 --ephemeral 10
|
|
|
|
_NETWORK_ID=$(nova net-list | grep private | awk -F\| '{print $2}' | tr -d ' ')
|
2016-05-28 23:32:49 +02:00
|
|
|
_EXTGW_ID=$(nova net-list | grep public | awk -F\| '{print $2}' | tr -d ' ')
|
2015-12-13 00:07:18 +01:00
|
|
|
_IMAGE_ID=$(nova image-list | grep CirrOS | awk -F\| '{print $2}' | tr -d ' ' | head -1)
|
|
|
|
echo export OS_IMAGE_NAME="cirros-0.3.4-x86_64-uec" >> openrc
|
|
|
|
echo export OS_IMAGE_ID="$_IMAGE_ID" >> openrc
|
|
|
|
echo export OS_NETWORK_ID=$_NETWORK_ID >> openrc
|
2016-05-28 23:32:49 +02:00
|
|
|
echo export OS_EXTGW_ID=$_EXTGW_ID >> openrc
|
2015-12-13 00:07:18 +01:00
|
|
|
echo export OS_POOL_NAME="public" >> openrc
|
|
|
|
echo export OS_FLAVOR_ID=99 >> openrc
|
|
|
|
source openrc demo
|
|
|
|
|
|
|
|
# Replace the below lines with the repo/branch you want to test
|
|
|
|
#git remote add jtopjian https://github.com/jtopjian/terraform
|
|
|
|
#git fetch jtopjian
|
2016-04-18 21:32:29 +02:00
|
|
|
#git checkout --track jtopjian/openstack-secgroup-safe-delete
|
2015-12-13 00:07:18 +01:00
|
|
|
#make testacc TEST=./builtin/providers/openstack TESTARGS='-run=AccBlockStorageV1'
|
|
|
|
#make testacc TEST=./builtin/providers/openstack TESTARGS='-run=AccCompute'
|
|
|
|
#make testacc TEST=./builtin/providers/openstack
|