On Tue, Jun 18, 2013 at 7:52 AM, Kashyap Chamarthy <kchamart@redhat.com> wrote:
Heya,

Fedora release-engineering prepared a cloud-consumable image of F19 Test Compose 5,

    https://dl.fedoraproject.org/pub/alt/stage/19-TC5/Images/x86_64/

Nice! Do we know what kickstart file and what version of it they are compiled with?
 


Get it:

    $ wget -c
https://dl.fedoraproject.org/pub/alt/stage/19-TC5/Images/x86_64/Fedora-x86_64-19-TC5-20130617-sda.qcow2


Import it into your Glance service:

    $ glance image-create --name fedora19-tc5 --is-public true \
      --disk-format qcow2 --container-format bare \
      < Fedora-x86_64-19-TC5-20130617-sda.qcow2

FWIW, the above two steps can also be combined into one:

$ glance image-create --name fedora19-tc5 --is-public true \
    --disk-format qcow2 --container-format bare --copy-from \
    https://dl.fedoraproject.org/pub/alt/stage/19-TC5/Images/x86_64/Fedora-x86_64-19-TC5-20130617-sda.qcow2

...the downside being that you can't verify the checksum between downloading the image and pushing it into glance.
 

Add a key pair (if you already have one, disregard this step):

    $ nova keypair-add testkey1 > testkey1.priv
    $ chmod 600 testkey1.priv


Launch a guest:

    $ nova boot --flavor 2 --key_name oskey1 --image \
      $UUID fedora19-test1


And all the further testing you prefer..

Please report any problems here.

Happy testing.

PS: Fedora-19 releases around 1st week of July.

--
/kashyap

_______________________________________________
Rdo-list mailing list
Rdo-list@redhat.com
https://www.redhat.com/mailman/listinfo/rdo-list