Add info on key-value of volume QoS spec

Give user the information on value to input for key-value,
when they click on 'manage spec' in:
- admin->system->volume->volume Types

Change-Id: Ib08d2de800370dc47ed113e72c00bec353468a38
Closes-bug: #1636679
This commit is contained in:
milan potdar 2017-01-23 16:09:07 +00:00
parent 8708885270
commit 479fbd552d

@ -3,5 +3,17 @@
{% block modal-body-right %}
<h3>{% trans "Description:" %}</h3>
<p>{% blocktrans with key=qos_spec_name %}Create a new "spec" key-value pair for QoS Spec "{{ qos_spec_name }}"{% endblocktrans %}</p>
<p>{% 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
<tt>"minIOPS", "maxIOPS" and "burstIOPS"</tt>.
<br>
<br>
Example:
<br>
Key: minIOPS and Value:20 (number value less than maxIOPS)
<br>
Key: maxIOPS and Value:5000 (number value bigger than minIOPS)
<br>
Key: burstIOPS and Value:5000 (number value bigger than minIOPS)
{% endblocktrans %}</p>
{% endblock %}