From 42bfb3470bd456d0546d4cb2ab33b2c2a6e77ac6 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Sun, 8 Apr 2012 21:30:17 -0700 Subject: [PATCH] Removed glance and nova tests These have been moved to the respective nova and glance repos. --- ext/glance.sh | 7 ------- ext/nova.sh | 19 ------------------- 2 files changed, 26 deletions(-) delete mode 100755 ext/glance.sh delete mode 100755 ext/nova.sh diff --git a/ext/glance.sh b/ext/glance.sh deleted file mode 100755 index b315a81..0000000 --- a/ext/glance.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -# Extract creds -# Add images to glance and index -glance add name=ramdisk disk_format=ari container_format=ari is_public=True < /vagrant/images/lucid_ami/initrd.img-2.6.32-23-server -glance add name=kernel disk_format=aki container_format=aki is_public=True < /vagrant/images/lucid_ami/vmlinuz-2.6.32-23-server -glance add name=lucid_ami disk_format=ami container_format=ami is_public=True ramdisk_id=1 kernel_id=2 < /vagrant/images/lucid_ami/ubuntu-lucid.img -glance index diff --git a/ext/nova.sh b/ext/nova.sh deleted file mode 100755 index c69aecc..0000000 --- a/ext/nova.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -# Extract creds -cd ~ -sudo nova-manage project zipfile nova novaadmin -unzip nova.zip -source novarc -euca-add-keypair openstack > ~/cert.pem -# List -nova flavor-list -nova image-list - -# Run instance -euca-run-instances ami-00000003 -k openstack -t m1.tiny -euca-describe-instances - -echo 'log into your controller VM' -echo 'check the status of your VM with euca-describe-instances' -echo 'when it is in the running state, verify that you can login' -echo 'using ssh -i ~/cert.pem root@ip.address'