summaryrefslogtreecommitdiff
path: root/openstackclient/network
diff options
context:
space:
mode:
authorLajos Katona <lajos.katona@ericsson.com>2018-08-02 09:38:31 +0200
committerLajos Katona <lajos.katona@ericsson.com>2018-08-10 07:37:57 +0200
commit5c0de6edc2aa55fbf1aa65bbcee0c0bfeb9db17f (patch)
tree60655c396a3ebd7ffcc9336451a31939eaa92bda /openstackclient/network
parent2b62b6e6ecb5fbb6d3078a3f7737364e13ec4e6c (diff)
downloadpython-openstackclient-5c0de6edc2aa55fbf1aa65bbcee0c0bfeb9db17f.tar.gz
Detailed help message for QoS max-burst-kbps value
For QoS rule type bandwidth-limit the max-burst-kbps value for ovs and linuxbridge is suggested to be 80% of the maxkbps value, let's give a detailed help message for the CLI user. For details see https://docs.openstack.org/neutron/queens/admin/ config-qos.html#user-workflow Change-Id: Ia6e38ec7052b7af64880c2f4c5e242d7cb980df5 Closes-Bug: #1777866
Diffstat (limited to 'openstackclient/network')
-rw-r--r--openstackclient/network/v2/network_qos_rule.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/openstackclient/network/v2/network_qos_rule.py b/openstackclient/network/v2/network_qos_rule.py
index 9c4275a8..28c5600a 100644
--- a/openstackclient/network/v2/network_qos_rule.py
+++ b/openstackclient/network/v2/network_qos_rule.py
@@ -141,7 +141,10 @@ def _add_rule_arguments(parser):
dest='max_burst_kbits',
metavar='<max-burst-kbits>',
type=int,
- help=_('Maximum burst in kilobits, 0 means automatic')
+ help=_('Maximum burst in kilobits, 0 or not specified means '
+ 'automatic, which is 80%% of the bandwidth limit, which works '
+ 'for typical TCP traffic. For details check the QoS user '
+ 'workflow.')
)
parser.add_argument(
'--dscp-mark',