network flavor

A network flavor extension allows the user selection of operator-curated flavors during resource creations. It allows administrators to create network service flavors.

Network v2

network flavor add profile

Add a service profile to a network flavor

openstack network flavor add profile <flavor> <service-profile>
flavor

Network flavor (name or ID)

service-profile

Service profile (ID only)

This command is provided by the python-openstackclient plugin.

network flavor create

Create new network flavor

openstack network flavor create
    --service-type <service-type>
    [--description DESCRIPTION]
    [--project <project>]
    [--project-domain <project-domain>]
    [--enable | --disable]
    <name>
--service-type <service-type>

Service type to which the flavor applies to: e.g. VPN (See openstack network service provider list for loaded examples.)

--description <DESCRIPTION>

Description for the flavor

--project <project>

Owner’s project (name or ID)

--project-domain <project-domain>

Domain the project belongs to (name or ID). This can be used in case collisions between project names exist.

--enable

Enable the flavor (default)

--disable

Disable the flavor

name

Name for the flavor

This command is provided by the python-openstackclient plugin.

network flavor delete

Delete network flavors

openstack network flavor delete <flavor> [<flavor> ...]
flavor

Flavor(s) to delete (name or ID)

This command is provided by the python-openstackclient plugin.

network flavor list

List network flavors

openstack network flavor list [--sort-column SORT_COLUMN]
--sort-column SORT_COLUMN

specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated

This command is provided by the python-openstackclient plugin.

network flavor remove profile

Remove service profile from network flavor

openstack network flavor remove profile <flavor> <service-profile>
flavor

Network flavor (name or ID)

service-profile

Service profile (ID only)

This command is provided by the python-openstackclient plugin.

network flavor set

Set network flavor properties

openstack network flavor set
    [--description DESCRIPTION]
    [--disable | --enable]
    [--name <name>]
    <flavor>
--description <DESCRIPTION>

Set network flavor description

--disable

Disable network flavor

--enable

Enable network flavor

--name <name>

Set flavor name

flavor

Flavor to update (name or ID)

This command is provided by the python-openstackclient plugin.

network flavor show

Display network flavor details

openstack network flavor show <flavor>
flavor

Flavor to display (name or ID)

This command is provided by the python-openstackclient plugin.