{% extends "header.html" %} {% import 'macros.html' as macros %} {% import 'elements.html' as elm %} {% block content %}

{{ group }}
{{ macros.group_links(group) }}


Description: {{ card.description }}

Owners: {% for owner in card.owners|sort %}{{ owner }} {% endfor %}

Tags:

Port: {{ card.legacy.funcs.instancePort|replace('new', '')|replace('old', '') }}

Requirements
{% set i = card.reqs.instances %}
resource
guarantee {{ (i.memory_guarantee|float / 1024 / 1024 / 1024)|round(1) }} GB
limit {{ ((i.memory_guarantee + i.memory_overcommit)|float / 1024 / 1024 / 1024)|round(1) }} GB
disk {{ (i.disk|float / 1024 / 1024 / 1024)|round(1) }} GB
ssd {{ (i.ssd|float / 1024 / 1024 / 1024)|round(1) }} GB
{% if card.reqs.volumes|length %}
Volumes
{% for v in card.reqs.volumes %} {% endfor %}
mount pointstoragequotais sharedsymlinks
{{ v.guest_mp }} {{ v.host_mp_root }} {{ (v.quota|float / 1024 / 1024 / 1024)|round(1) }} GB {{ v.shared }} {{ v.symlinks|sort|join(", ") }}
{% endif %}

{% if card.slaves|length %}
Slaves {% for group in card.slaves %} {% if not group.startswith('ALL_UNSORTED') %}
  • {{ group }} {{ macros.group_links(group) }}
  • {% endif %} {% endfor %}
    {% endif %} {% if card.master %}
    Master {% set group = card.master %} {% if not group.startswith('ALL_UNSORTED') %}
  • {{ group }} {{ macros.group_links(group) }}
  • {% endif %}
    {% endif %} {{ elm.footer() }} {% endblock %}