All Volume Snapshots Not Listed in UI

Problem

Unable to create volume from a snapshot using UI as all snapshots are not listed in UI.

Environment

  • Platform9 Managed OpenStack - v3.5-4.3

  • Cinder

  • OpenStack CLI

Resolution

  1. The issue is fixed in Platform9 Managed OpenStack v4.4.

  2. Run below command to get a list of all snapshots for a volume in previous versions.

$ openstack volume snapshot list --project [project-id] --volume [volume-id]
  1. Use the below command to create a volume from an existing snapshot.

$ openstack volume create --snapshot [snapshot id] --size [volume disk size] --availability-zone [az name] [name of volume to be created]
  1. For more information on the options check the man page by running below command.

$ openstack help volume create

Last updated