diff --git a/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/qos_specs/_create.html b/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/qos_specs/_create.html index d372d115ab..e1c7c7f10c 100644 --- a/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/qos_specs/_create.html +++ b/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/qos_specs/_create.html @@ -3,5 +3,17 @@ {% block modal-body-right %}

{% trans "Description:" %}

-

{% blocktrans with key=qos_spec_name %}Create a new "spec" key-value pair for QoS Spec "{{ qos_spec_name }}"{% endblocktrans %}

+

{% blocktrans with key=qos_spec_name %}Create a new "spec" key-value pair for QoS Spec "{{ qos_spec_name }}". + Valid key names are expected in the QoS specs. The acceptable values for key are + "minIOPS", "maxIOPS" and "burstIOPS". +
+
+ Example: +
+ Key: minIOPS and Value:20 (number value less than maxIOPS) +
+ Key: maxIOPS and Value:5000 (number value bigger than minIOPS) +
+ Key: burstIOPS and Value:5000 (number value bigger than minIOPS) + {% endblocktrans %}

{% endblock %}