Create Glance Snapshot
Via Horizon Dashboard
- Navigate to Project → Compute → Instances.
- Locate the instance you want to snapshot.
- In the Actions column, click the dropdown menu next to the instance and select Create Snapshot.
- Enter a Snapshot Name and click Create Snapshot.
- The snapshot will appear under Project → Compute → Images.
Via CLI
openstack server image create <instance_id> --name <snapshot_name>
- If the instance has attached volumes, corresponding Cinder volumes will be created.
- If the instance was booted from a volume, the snapshot will show a size of 0 and contain only metadata.
Create Volume from Snapshot
If the instance was booted from a volume and you want to store the root disk in the image repository:
Via Horizon Dashboard
- Go to Project → Compute → Volumes → Snapshots.
- Find the snapshot and select Create Volume from the action menu.
- Provide a name for the volume and confirm.
Via CLI
openstack volume create --snapshot <snapshot_id> <volume_name>