Merge "Add architecture to tempest configuration"
This commit is contained in:
commit
9414334972
24
lib/tempest
24
lib/tempest
@ -307,9 +307,9 @@ function configure_tempest {
|
|||||||
iniset $TEMPEST_CONFIG boto ec2_url "http://$SERVICE_HOST:8773/services/Cloud"
|
iniset $TEMPEST_CONFIG boto ec2_url "http://$SERVICE_HOST:8773/services/Cloud"
|
||||||
iniset $TEMPEST_CONFIG boto s3_url "http://$SERVICE_HOST:${S3_SERVICE_PORT:-3333}"
|
iniset $TEMPEST_CONFIG boto s3_url "http://$SERVICE_HOST:${S3_SERVICE_PORT:-3333}"
|
||||||
iniset $TEMPEST_CONFIG boto s3_materials_path "$BOTO_MATERIALS_PATH"
|
iniset $TEMPEST_CONFIG boto s3_materials_path "$BOTO_MATERIALS_PATH"
|
||||||
iniset $TEMPEST_CONFIG boto ari_manifest cirros-${CIRROS_VERSION}-x86_64-initrd.manifest.xml
|
iniset $TEMPEST_CONFIG boto ari_manifest cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-initrd.manifest.xml
|
||||||
iniset $TEMPEST_CONFIG boto ami_manifest cirros-${CIRROS_VERSION}-x86_64-blank.img.manifest.xml
|
iniset $TEMPEST_CONFIG boto ami_manifest cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-blank.img.manifest.xml
|
||||||
iniset $TEMPEST_CONFIG boto aki_manifest cirros-${CIRROS_VERSION}-x86_64-vmlinuz.manifest.xml
|
iniset $TEMPEST_CONFIG boto aki_manifest cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-vmlinuz.manifest.xml
|
||||||
iniset $TEMPEST_CONFIG boto instance_type "$boto_instance_type"
|
iniset $TEMPEST_CONFIG boto instance_type "$boto_instance_type"
|
||||||
iniset $TEMPEST_CONFIG boto http_socket_timeout 30
|
iniset $TEMPEST_CONFIG boto http_socket_timeout 30
|
||||||
iniset $TEMPEST_CONFIG boto ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
|
iniset $TEMPEST_CONFIG boto ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
|
||||||
@ -329,10 +329,10 @@ function configure_tempest {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Scenario
|
# Scenario
|
||||||
iniset $TEMPEST_CONFIG scenario img_dir "$FILES/images/cirros-${CIRROS_VERSION}-x86_64-uec"
|
iniset $TEMPEST_CONFIG scenario img_dir "$FILES/images/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec"
|
||||||
iniset $TEMPEST_CONFIG scenario ami_img_file "cirros-${CIRROS_VERSION}-x86_64-blank.img"
|
iniset $TEMPEST_CONFIG scenario ami_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-blank.img"
|
||||||
iniset $TEMPEST_CONFIG scenario ari_img_file "cirros-${CIRROS_VERSION}-x86_64-initrd"
|
iniset $TEMPEST_CONFIG scenario ari_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-initrd"
|
||||||
iniset $TEMPEST_CONFIG scenario aki_img_file "cirros-${CIRROS_VERSION}-x86_64-vmlinuz"
|
iniset $TEMPEST_CONFIG scenario aki_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-vmlinuz"
|
||||||
|
|
||||||
# Large Ops Number
|
# Large Ops Number
|
||||||
iniset $TEMPEST_CONFIG scenario large_ops_number ${TEMPEST_LARGE_OPS_NUMBER:-0}
|
iniset $TEMPEST_CONFIG scenario large_ops_number ${TEMPEST_LARGE_OPS_NUMBER:-0}
|
||||||
@ -411,8 +411,8 @@ function install_tempest {
|
|||||||
|
|
||||||
# init_tempest() - Initialize ec2 images
|
# init_tempest() - Initialize ec2 images
|
||||||
function init_tempest {
|
function init_tempest {
|
||||||
local base_image_name=cirros-${CIRROS_VERSION}-x86_64
|
local base_image_name=cirros-${CIRROS_VERSION}-${CIRROS_ARCH}
|
||||||
# /opt/stack/devstack/files/images/cirros-${CIRROS_VERSION}-x86_64-uec
|
# /opt/stack/devstack/files/images/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec
|
||||||
local image_dir="$FILES/images/${base_image_name}-uec"
|
local image_dir="$FILES/images/${base_image_name}-uec"
|
||||||
local kernel="$image_dir/${base_image_name}-vmlinuz"
|
local kernel="$image_dir/${base_image_name}-vmlinuz"
|
||||||
local ramdisk="$image_dir/${base_image_name}-initrd"
|
local ramdisk="$image_dir/${base_image_name}-initrd"
|
||||||
@ -424,9 +424,9 @@ function init_tempest {
|
|||||||
( #new namespace
|
( #new namespace
|
||||||
# tenant:demo ; user: demo
|
# tenant:demo ; user: demo
|
||||||
source $TOP_DIR/accrc/demo/demo
|
source $TOP_DIR/accrc/demo/demo
|
||||||
euca-bundle-image -r x86_64 -i "$kernel" --kernel true -d "$BOTO_MATERIALS_PATH"
|
euca-bundle-image -r ${CIRROS_ARCH} -i "$kernel" --kernel true -d "$BOTO_MATERIALS_PATH"
|
||||||
euca-bundle-image -r x86_64 -i "$ramdisk" --ramdisk true -d "$BOTO_MATERIALS_PATH"
|
euca-bundle-image -r ${CIRROS_ARCH} -i "$ramdisk" --ramdisk true -d "$BOTO_MATERIALS_PATH"
|
||||||
euca-bundle-image -r x86_64 -i "$disk_image" -d "$BOTO_MATERIALS_PATH"
|
euca-bundle-image -r ${CIRROS_ARCH} -i "$disk_image" -d "$BOTO_MATERIALS_PATH"
|
||||||
) 2>&1 </dev/null | cat
|
) 2>&1 </dev/null | cat
|
||||||
else
|
else
|
||||||
echo "Boto materials are not prepared"
|
echo "Boto materials are not prepared"
|
||||||
|
17
stackrc
17
stackrc
@ -332,14 +332,15 @@ esac
|
|||||||
# glance as a disk image. If it ends in .gz, it is uncompressed first.
|
# glance as a disk image. If it ends in .gz, it is uncompressed first.
|
||||||
# example:
|
# example:
|
||||||
# http://cloud-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-armel-disk1.img
|
# http://cloud-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-armel-disk1.img
|
||||||
# http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-rootfs.img.gz
|
# http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-rootfs.img.gz
|
||||||
# * OpenVZ image:
|
# * OpenVZ image:
|
||||||
# OpenVZ uses its own format of image, and does not support UEC style images
|
# OpenVZ uses its own format of image, and does not support UEC style images
|
||||||
|
|
||||||
#IMAGE_URLS="http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz" # old ttylinux-uec image
|
#IMAGE_URLS="http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz" # old ttylinux-uec image
|
||||||
#IMAGE_URLS="http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-disk.img" # cirros full disk image
|
#IMAGE_URLS="http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-disk.img" # cirros full disk image
|
||||||
|
|
||||||
CIRROS_VERSION=${CIRROS_VERSION:-"0.3.2"}
|
CIRROS_VERSION=${CIRROS_VERSION:-"0.3.2"}
|
||||||
|
CIRROS_ARCH=${CIRROS_ARCH:-"x86_64"}
|
||||||
|
|
||||||
# Set default image based on ``VIRT_DRIVER`` and ``LIBVIRT_TYPE``, either of
|
# Set default image based on ``VIRT_DRIVER`` and ``LIBVIRT_TYPE``, either of
|
||||||
# which may be set in ``localrc``. Also allow ``DEFAULT_IMAGE_NAME`` and
|
# which may be set in ``localrc``. Also allow ``DEFAULT_IMAGE_NAME`` and
|
||||||
@ -351,11 +352,11 @@ case "$VIRT_DRIVER" in
|
|||||||
libvirt)
|
libvirt)
|
||||||
case "$LIBVIRT_TYPE" in
|
case "$LIBVIRT_TYPE" in
|
||||||
lxc) # the cirros root disk in the uec tarball is empty, so it will not work for lxc
|
lxc) # the cirros root disk in the uec tarball is empty, so it will not work for lxc
|
||||||
DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-x86_64-rootfs}
|
DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-rootfs}
|
||||||
IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-rootfs.img.gz"};;
|
IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-rootfs.img.gz"};;
|
||||||
*) # otherwise, use the uec style image (with kernel, ramdisk, disk)
|
*) # otherwise, use the uec style image (with kernel, ramdisk, disk)
|
||||||
DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-x86_64-uec}
|
DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec}
|
||||||
IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-uec.tar.gz"};;
|
IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec.tar.gz"};;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
vsphere)
|
vsphere)
|
||||||
@ -366,8 +367,8 @@ case "$VIRT_DRIVER" in
|
|||||||
IMAGE_URLS=${IMAGE_URLS:-"https://github.com/downloads/citrix-openstack/warehouse/cirros-0.3.0-x86_64-disk.vhd.tgz"}
|
IMAGE_URLS=${IMAGE_URLS:-"https://github.com/downloads/citrix-openstack/warehouse/cirros-0.3.0-x86_64-disk.vhd.tgz"}
|
||||||
IMAGE_URLS+=",http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-uec.tar.gz";;
|
IMAGE_URLS+=",http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-uec.tar.gz";;
|
||||||
*) # Default to Cirros with kernel, ramdisk and disk image
|
*) # Default to Cirros with kernel, ramdisk and disk image
|
||||||
DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-x86_64-uec}
|
DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec}
|
||||||
IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-uec.tar.gz"};;
|
IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec.tar.gz"};;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Use 64bit fedora image if heat is enabled
|
# Use 64bit fedora image if heat is enabled
|
||||||
|
Loading…
Reference in New Issue
Block a user