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
- The issue is fixed in Platform9 Managed OpenStack v4.4.
- 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>
- 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>
- For more information on the options check the man page by running below command.
$ openstack help volume create