Files
python-manilaclient/doc/source/cli/osc_plugin_cli.rst
Kiran Pawar 0953eff609 Add option to override API endpoint
Provide an option to override API endpoint to address multiple
manila deployments on same cloud. Usage as following:
"openstack --os-endpoint-override <endpoint_url> share list"

Closes-bug: #2111331
Co-authored-by: Chuan Miao <chuan.miao@sap.com>
Change-Id: I5e11256473ab88b08e7374fd68f58a0257adab1f
Signed-off-by: Kiran Pawar <kinpaa@gmail.com>
2025-08-15 12:07:34 +00:00

1.9 KiB

openstack share Command-Line Interface (CLI)

openstack share

Synopsis

openstack [options] share <command> [command-options]

openstack help share <command>

Description

The OpenStack Client plugin interacts with the Manila service through the openstack share command line interface (CLI).

To use the CLI, you must provide your OpenStack username, password, project, auth endpoint and the share API version. You can use configuration options --os-username, --os-password, --os-project-name, --os-auth-url and --os-share-api-version, or set the corresponding environment variables:

export OS_USERNAME=foo
export OS_PASSWORD=bar
export OS_TENANT_NAME=foobarproject
export OS_AUTH_URL=http://...
export OS_SHARE_API_VERSION=2.51

It is possible to use different Manila endpoint while using Openstack Client. In this case, you can use configuration option --os-endpoint-override or set the corresponding environment variable:

export OS_ENDPOINT_OVERRIDE=http://...

Getting help

To get a full list of all possible commands, run:

$ openstack help share

To get detailed help for one command, run:

$ openstack help share <command>

Examples

Get information about the openstack share create command:

$ openstack help share create

Create one share:

$ openstack share create NFS 1 --name "myshare"

List shares:

$ openstack share list

Display a share:

$ openstack share show myshare

Delete a share:

$ openstack share delete myshare

Extend a 1gb share to 2gb:

$ openstack share resize myshare 2

Shrink a 2gb share to 1gb:

$ openstack share resize myshare 1

Command Reference

osc/v2/*