Translations:Managing your cloud resources with OpenStack/42/en: Difference between revisions
Jump to navigation
Jump to search
472 bytes removed
, 4 years ago
|
|
Line 1: |
Line 1: |
| =Working with images= | | =Working with images= |
| ==Creating an Image from a VM== | | ==Creating an Image from a VM== |
| Using the [[OpenStack Command Line Clients]] issue the command
| | The proceedure for creating an image of a VM depends on weather it is booting from a volume (typically "p" flavors), or from an ephemeral disk (typically "c" flavors). |
| {{Command| openstack server image create <server-name>}}
| |
| where <code><server-name></code> should be replaced with the name of your server. This action will only include the VM's root drive (e.g. /dev/vda) in the image. Ephemeral drives and non-boot attached volumes will not be included in the image so additional measures should be taken to preserve this data. In addition, if the VM is writing to disk while the image is being created the file system may be captured in an inconsistent state. We recommend the VM be shut off (not deleted) before an image is created from it.
| |