On Wed, Dec 13, 2023 at 6:10 AM garcetto <garcetto@gmail.com> wrote:good afternoon,i am trying to use the openstackclient (https://docs.openstack.org/newton/user-guide/common/cli-install-openstack-command-line-clients.html), but it seems than I cannot use it to see cinder volume snapshot, even the doc say it is possibleit says"(my-virt-env) user@ostack:~$ openstack snapshot list
openstack: 'snapshot list' is not an openstack command. See 'openstack --help'.
Did you mean one of these?
endpoint add project
endpoint create
endpoint delete
endpoint group add project
endpoint group create..."what am i missing?All of the cinder (block storage) commands are grouped under the "volume" command group, so you want this:$ openstack volume snapshot listAlanthank you.