How to Download an Image from Ace Cloud?

Overview

This document provides step-by-step instructions on how to download an image from Ace Cloud. The process involves creating a snapshot of a volume, uploading it to the image service, and then downloading the image using the OpenStack Command-Line Interface (CLI).

Prerequisites

  • Access to an OpenStack project with the necessary permissions to create snapshots, manage volumes, and download images.

  • OpenStack CLI is installed on your machine.

  • Python3-glanceclient installed on your machine.

Process

Step 1: Create a Snapshot

To create a snapshot, follow the below steps:

a. Login to your account.

b. Navigate to Services and then click on My Services.

c. Click on your project.

d. Navigate to Compute and then click on Instances.

e. Select the Instance from the list and click on the action icon.

f. Choose Create Snapshot.

g. Enter the Snapshot Name and hit Submit.

Step 2: Upload the Volume to an Image

Follow the below steps to learn how to upload the volume to an image:

a. Navigate to Storage then click on Volumes, locate the volume created from the snapshot.

b. Click on the actions icon next to the volume and select Upload to Image.

c. Enter the Image Name, select the Disk Format (e.g., QCOW2, RAW) and click on Upload.

Step 3: Locate Your Image in the Image Section

a. Navigate to Storage and then click on Images.

b. Find the image you just uploaded and note the image name for use in the next steps.

Step 4: Access the OpenStack CLI

a. Open a terminal on your local machine.

b. Ensure you have the OpenStack CLI installed and configured with your OpenStack credentials.

Step 5: List Available Images

a. Run the following command to list all images and filter for your specific image:

OpenStack image list | grep -i "your-image"

Note:

  • Enter your image name in place of "your-image".

  • Note the Image ID associated with your image, which you will need in the below step.

Step 6: Install the Python3 Glance Client

Run the below command to install the Glance client:

sudo apt install python3-glanceclient -y

This client is necessary to interact with the OpenStack Image service.

Step 7: Download the Image

a. Use the following command to download the image:

glance image-download --file 'your-image-name' <image-id> --progress

Note: Replace 'your-image-name' with the name you want for the downloaded file and <image-id> with the ID of the image you fetched in the above step.

b. The image will be downloaded to the current directory with the specified file name.

Conclusion

Following these steps, you can successfully create a snapshot of an instance, upload it to the Ace Cloud Image service, and download it to your local machine using the OpenStack CLI. This process is helpful for backing up instances, migrating them between environments, or obtaining a copy of an instance's image.

Last updated