horizon/openstack_dashboard/dashboards/admin/volume_types/templates/volume_types/qos_specs/_create.html

21 lines
752 B
HTML

{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block modal-body-right %}
<h3>{% trans "Description:" %}</h3>
<p>{% blocktrans trimmed %}
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>.
{% endblocktrans %}
</p>
<p>
{% trans "Example:" %}
<ul>
<li>{% trans "Key: minIOPS and Value:20 (number value less than maxIOPS)" %}</li>
<li>{% trans "Key: maxIOPS and Value:5000 (number value bigger than minIOPS)" %}</li>
<li>{% trans "Key: burstIOPS and Value:5000 (number value bigger than minIOPS)" %}</li>
</ul>
</p>
{% endblock %}