{% extends "horizon/common/_modal_form.html" %} {% load i18n %} {% block form_id %}edit_iconfig_form{% endblock %} {% block form_action %}{% url 'horizon:admin:system_config:update_storage_pools_table' tier_name %}{% endblock %} {% block modal_id %}edit_iconfig_modal{% endblock %} {% block modal-header %}{% trans "Edit size of Ceph Storage Pools" %}{% endblock %} {% block modal-body %}
{% include "horizon/common/_form_fields.html" %}

{% trans "Description" %}:

{% trans "From here you can update the quota allocated to the pools associated with this Ceph storage tier." %}

{% trans "A quota value of 0 will allow the storage associated with that pool to consume all available space in the tier." %}

{% if tier_name == 'storage' %}

{% trans "A quota value of 0 is not allowed for the cinder, glance or kube pool." %}

{% trans "The sum of the desired quotas must equal 100% of the cluster size." %}

{% else %}

{% trans "A quota value of 0 is allowed for the cinder or kube pool." %}

{% endif %}

{{ configured_quota }} GiB out of {{ tier_total }} GiB configured

{% endblock %} {% block modal-footer %} {% trans "Cancel" %} {% endblock %}