{% extends "base.html" %} {% block title %}Team {{ team_id|capitalize }}{% endblock %} {% block content %}

Team {{ team_id|capitalize }} {% for link in links['team']: %} {% endfor %}

You can potentially save {{ team.slack_cost|money }} USD every month by optimizing resource requests and reducing slack.

Clusters

{% if links['cluster']: %} {% endif %} {% for cluster_id in team.clusters: %} {% set summary = cluster_summaries[cluster_id] %} {% if links['cluster']: %} {% endif %} {%endfor %}
Cluster MN WN Inst. Types Version I P UP CPU Memory (GiB) Cost
{{ summary.cluster.name }} {{ summary.master_nodes }} {{ summary.worker_nodes }} {{ summary.worker_instance_types|join(', ') }} {{ summary.kubelet_versions|join(', ') }} {{ summary.ingresses|count }} {{ summary.pods|count }} {{ summary.user_pods }}
{{ summary.usage.cpu|cpu }} {{ summary.requests.cpu|cpu }} {{ summary.allocatable.cpu|cpu }}
{{ summary.usage.memory|memory('GiB') }} {{ summary.requests.memory|memory('GiB') }} {{ summary.allocatable.memory|memory('GiB') }}
{{ summary.cost|money }}

Applications

{% if links['application']: %} {% endif %} {% for application_id, app in applications.items()|sort: %} {% if app.team == team_id: %} {% if team.cost > 0 %} {% with percentage=(app.cost / team.cost) * 100 %} {% endwith %} {% else %} {% endif %} {% if links['application']: %} {% endif %} {% endif %} {%endfor %}
ID A? C P CR MR CPU Memory (MiB) Cost Slack Cost Cost %
{{ application_id }} {% if app.active is not none: %} {% if app.active: %} {% else: %} {% endif %} {% endif %} {{ app.clusters|count }} {{ app.pods }} {{ app.requests.cpu|round(3) }} {{ app.requests.memory|filesizeformat(True) }} {{ elements.resource_bar_cpu(app) }} {{ elements.resource_bar_memory(app) }} {{ app.cost|money }} {{ app.slack_cost|money }}
{{ percentage|round(0)|int }}%
-
{% endblock %}