From 698fd05cdc2d871fd494af01d3ab5f93bd401e4c Mon Sep 17 00:00:00 2001 From: andydugas Date: Thu, 3 Apr 2014 17:30:40 -0700 Subject: [PATCH] Added ISO image support documentation Created a new file for procedures and modified the chapter level file to include the new file. Change-Id: I101dec7d60671561a92fe4a709a55da9e8517dc2 Closes-Bug: #1302260 --- doc/config-reference/ch_imageservice.xml | 1 + .../section_image-service-ISO-support.xml | 44 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 doc/config-reference/image-service/section_image-service-ISO-support.xml diff --git a/doc/config-reference/ch_imageservice.xml b/doc/config-reference/ch_imageservice.xml index a49ecce259..3e410d4456 100644 --- a/doc/config-reference/ch_imageservice.xml +++ b/doc/config-reference/ch_imageservice.xml @@ -44,6 +44,7 @@ + diff --git a/doc/config-reference/image-service/section_image-service-ISO-support.xml b/doc/config-reference/image-service/section_image-service-ISO-support.xml new file mode 100644 index 0000000000..ba0281553f --- /dev/null +++ b/doc/config-reference/image-service/section_image-service-ISO-support.xml @@ -0,0 +1,44 @@ + +
+ Support for ISO images + You can load ISO images into the Image Service. You can + subsequently boot an ISO image using Compute. + + To load an ISO image to an Image Service data + store + + Obtain the ISO image. For example, + ubuntu-13.04-server-amd64.iso. + + + In the Image Service, run the following + command: + $ glance image-create --name ubuntu.iso \ + --is-public=True --container-format=bare \ + --disk-format=iso < ubuntu-13.04-server-amd64.iso + In this command, ubuntu.iso is + the name for the ISO image after it is loaded to the + Image Service, and + ubuntu-13.04-server-amd64.iso + is the name of the source ISO image. + + + Optionally, confirm the upload in Compute. + Run this command: + $ nova image-list + + + + To boot an instance from an ISO image + + Run this command: + $ nova boot --image ubuntu.iso \ + --flavor 1 instance_name + In this command, ubuntu.iso is + the ISO image, and instance_name is + the name of the new instance. + + +