openstack-image

manages virtual machine images in OpenStack Glance

TLDR

List images
$ openstack image list
Show image details
$ openstack image show [ubuntu-22.04]
Create image from file
$ openstack image create --file [image.qcow2] --disk-format qcow2 [image_name]
Delete image
$ openstack image delete [image_name]

SYNOPSIS

openstack image command [options]

DESCRIPTION

openstack image manages virtual machine images in OpenStack Glance. Upload, download, and manage boot images for instances. Part of OpenStack unified CLI.

PARAMETERS

list

List images.
show name
Show image details.
create name
Create/upload image.
delete name
Delete image.
--file path
Image file to upload.
--disk-format format
Disk format (qcow2, raw, vmdk, etc.).
--container-format format
Container format (bare, ovf, etc.).
--public
Make image public.

SEE ALSO

openstack-server(1), openstack(1)