Skip to content

Overview

Snapshots and Images

When you have created a custom workflow or configuration, you can create a snapshot for your own use. In OpenStack, an instance snapshot is an image. The only difference between an image that has been uploaded directly to the image data service: glance and an image you create by snapshot is that an image created by snapshot has additional properties in the Glance database and defaults to being private.

Info

Glance is a central image repository which provides discovering, registering, retrieving for disk and server images.

CAUTION: Avoid snapshotting running instances

You can create a snapshot from a running server instance, but if you want to preserve data, you must shut down the source VM and verify the instance status is SHUTOFF before creating the snapshot.

CAUTION: cloud-init & qemu-guest-agent

Before creating the snapshot and/or image, you’ll want to make sure that cloud-init is installed on your instance as well as qemu-guest-agent

  • If your instance was based on one of the Featured images, both cloud-init and qemu-guest-agent should be present unless you explicitly removed them.

To create the snapshot from the command line

openstack server image create --name snapshot-image-name instance-name

(e.g. openstack server image create --name MyCustomImage-Feb-7-2022 my-custom-instance)

The snapshot will also be available in Horizon and Exosphere both in the image list and will be avaible as a starting image for a new instance.

Snapshots can be downloaded locally in raw format with:

openstack image save --file whatever_file_name_you_like.raw UID

(e.g. openstack image save --file my-custom-image.raw 569677d8-c7b0-4606-86d8-7673a5ecd5cf )

Uploading a snapshot or new image into Glance:

You can upload a snapshot or image into Glance using:

openstack image create --disk-format raw --container-format bare --property visibility=private --property hw_disk_bus=scsi --property hw_scsi_model=virtio-scsi --property hw_qemu_guest_agent=yes --property os_require_quiesce=yes --file my-custom-image.raw My-Custom-Image-Name

CAUTION: metadata tags and visibility

There are a lot of metadata tags in the example, but those are important to insure that your instances will create properly from the stored image. You definitely want to make sure you get them all.

You can also set the visibility property during creation, but see Sharing an Image for limits.

Boot & Test

  • Boot the new image.
  • Test it.
  • Make sure it works.
  • Do this before deleting. Please. Once it’s gone, it’s really gone. Be sure.

Delete unused snapshot

Delete your snapshot if you no longer need it. For example:

openstack image delete 569677d8-c7b0-4606-86d8-7673a5ecd5cf


Sharing an Image

When you upload an image to Openstack, you can set the visibility of your image. Our documentation for uploading an image from the CLI sets visibility to private, which makes the image accessible only to users in the same project.

In order to make an image or snapshot available to users in other projects you need to set visibility either to shared or to community.

When an image is set to community with:

openstack image set --community <UUID or NAME>

users in all projects have access to it and they are displayed in Horizon and Exosphere, however by default only public images are displayed with:

openstack image list

in order to request community or shared images we need to add --community or --shared to the command above.

When an image is set to shared with:

openstack image set --shared <UUID or NAME>

then we need to share it explicitly with other projects:

openstack image add project <image UUID or NAME> <project>

Where project is the AAA000000 number of the allocation you want to share it with.

Someone from the other project you’re sharing it with would then need to do

openstack image set --accept <image UUID or NAME>

to accept the image.

You can check the current visibility setting of an image with:

openstack image show <UUID or NAME> -c name -c id -c visibility

CAUTION: VISIBILITY

You can set the visibility property to shared (only users in your project or projects you specifically shared with you can see and boot) or private (only your allocation can see and boot). Only in VERY special cases will Jetstream2 allow public visibility, such as staff-featured images. Limiting the number of fully public images in the catalog improves Jetstream2 reliability and performance.

Currently, visibility can only be modified in the Horizon and CLI interfaces.