Skip to content

Commit efc570d

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "OSC Network Flavor Profile"
2 parents 49e8661 + 7ef1e9e commit efc570d

8 files changed

Lines changed: 1057 additions & 0 deletions

File tree

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
======================
2+
network flavor profile
3+
======================
4+
5+
A **network flavor profile** allows administrators to create, delete, list,
6+
show and update network service profile, which details a framework to enable
7+
operators to configure and users to select from different abstract
8+
representations of a service implementation in the Networking service.
9+
It decouples the logical configuration from its instantiation enabling
10+
operators to create user options according to deployment needs.
11+
12+
Network v2
13+
14+
network flavor profile create
15+
-----------------------------
16+
17+
Create a new network flavor profile
18+
19+
.. program:: network flavor profile create
20+
.. code:: bash
21+
22+
openstack network flavor profile create
23+
[--project <project> [--project-domain <project-domain>]]
24+
[--description <description>]
25+
[--enable | --disable]
26+
(--driver <driver> | --metainfo <metainfo> | --driver <driver> --metainfo <metainfo>)
27+
28+
.. option:: --project <project>
29+
30+
Owner's project (name or ID)
31+
32+
*Network version 2 only*
33+
34+
.. option:: --project-domain <project-domain>
35+
36+
Domain the project belongs to (name or ID). This can
37+
be used in case collisions between project names
38+
exist
39+
40+
.. option:: --description <description>
41+
42+
Description for the flavor profile
43+
44+
*Network version 2 only*
45+
46+
.. option:: --enable
47+
48+
Enable the flavor profile (default)
49+
50+
.. option:: --disable
51+
52+
Disable the flavor profile
53+
54+
.. option:: --driver <driver>
55+
56+
Python module path to driver
57+
58+
*Network version 2 only*
59+
60+
.. option:: --metainfo <metainfo>
61+
62+
Metainfo for the flavor profile
63+
64+
*Network version 2 only*
65+
66+
67+
network flavor profile delete
68+
-----------------------------
69+
70+
Delete network flavor profile
71+
72+
.. program:: network flavor profile delete
73+
.. code:: bash
74+
75+
openstack network flavor profile delete
76+
<flavor-profile-id> [<flavor-profile-id> ...]
77+
78+
.. describe:: <flavor-profile-id>
79+
80+
Flavor profile(s) to delete (ID only)
81+
82+
network flavor profile list
83+
---------------------------
84+
85+
List network flavor profiles
86+
87+
.. program:: network flavor profile list
88+
.. code:: bash
89+
90+
openstack network flavor profile list
91+
92+
network flavor profile set
93+
--------------------------
94+
95+
Set network flavor profile properties
96+
97+
.. program:: network flavor profile set
98+
.. code:: bash
99+
100+
openstack network flavor profile set
101+
[--description <description>]
102+
[--driver <driver>]
103+
[--enable | --disable]
104+
[--metainfo <metainfo>]
105+
<flavor-profile-id>
106+
107+
108+
.. option:: --description <description>
109+
110+
Description of the flavor profile
111+
112+
.. option:: --driver <driver>
113+
114+
Python module path to driver
115+
116+
.. option:: --enable (Default)
117+
118+
Enable the flavor profile
119+
120+
.. option:: --disable
121+
122+
Disable the flavor profile
123+
124+
.. option:: --metainfo <metainfo>
125+
126+
Metainfo for the flavor profile
127+
128+
.. describe:: <flavor-profile-id>
129+
130+
Flavor profile to update (ID only)
131+
132+
network flavor profile show
133+
---------------------------
134+
135+
Show network flavor profile
136+
137+
.. program:: network flavor profile show
138+
.. code:: bash
139+
140+
openstack network flavor profile show
141+
<flavor-profile-id>
142+
143+
.. describe:: <flavor-profile-id>
144+
145+
Flavor profile to display (ID only)

doc/source/commands.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ referring to both Compute and Volume quotas.
113113
* ``network agent``: (**Network**) - A network agent is an agent that handles various tasks used to implement virtual networks
114114
* ``network auto allocated topology``: (**Network**) - an auto-allocated topology for a project
115115
* ``network flavor``: (**Network**) - allows the user to choose the type of service by a set of advertised service capabilities (e.g., LOADBALANCER, FWAAS, L3, VPN, etc) rather than by a provider type or named vendor
116+
* ``network flavor profile``: (**Network**) - predefined neutron service configurations: driver
116117
* ``network meter``: (**Network**) - allow traffic metering in a network
117118
* ``network meter rule``: (**Network**) - rules for network traffic metering
118119
* ``network rbac``: (**Network**) - an RBAC policy for network resources

0 commit comments

Comments
 (0)