37 lines
1.4 KiB
Bash
Executable File
37 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# assumes that resonable credentials have been stored at
|
|
# /root/auth
|
|
source /root/openrc
|
|
|
|
# get an image to test with
|
|
#wget http://cloud-images.ubuntu.com/precise/current/precise-server-cloudimg-amd64-disk1.img
|
|
# import that image into glance
|
|
#glance add name="precise-amd64" is_public=true container_format=ovf disk_format=qcow2 < precise-server-cloudimg-amd64-disk1.img
|
|
#IMAGE_ID=`glance index | grep 'precise-amd64' | head -1 | awk -F' ' '{print $1}'`
|
|
|
|
wget https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img
|
|
glance add name='cirros image' is_public=true container_format=bare disk_format=qcow2 < cirros-0.3.0-x86_64-disk.img
|
|
IMAGE_ID=`glance index | grep 'cirros image' | head -1 | awk -F' ' '{print $1}'`
|
|
|
|
# create a pub key
|
|
ssh-keygen -f /tmp/id_rsa -t rsa -N ''
|
|
nova keypair-add --pub_key /tmp/id_rsa.pub key_cirros
|
|
|
|
nova secgroup-create cirros_test 'Cirros test security group'
|
|
nova secgroup-add-rule cirros_test tcp 22 22 0.0.0.0/0
|
|
nova secgroup-add-rule cirros_test tcp 80 80 0.0.0.0/0
|
|
nova secgroup-add-rule cirros_test icmp -1 -1 0.0.0.0/0
|
|
|
|
floating_ip=`nova floating-ip-create | grep None | awk '{print $2}'`
|
|
|
|
nova boot --flavor 1 --security_groups cirros_test --image ${IMAGE_ID} --key_name key_cirros cirros_vm
|
|
sleep 5
|
|
nova show cirros_vm
|
|
# wait for the server to boot
|
|
sleep 20
|
|
nova add-floating-ip precise_vm $floating_ip
|
|
sleep 10
|
|
ssh ubuntu@$floating_ip -i /tmp/id_rsa
|
|
|