{% extends "base.html.jinja" %} {% block content %}

Compute

Managed container instances deployed through forage/containers destinations. Pay-as-you-go compute — no cluster setup required.

{% if instances | length > 0 %}
{% for inst in instances %} {% endfor %}
Project / Destination Image Region Replicas Resources Status
{% if inst.project %} {{ inst.project }} / {{ inst.destination }} {% if inst.environment %} {{ inst.environment }} {% endif %} {% else %} {{ inst.resource_name }} {% endif %} {{ inst.image }} {{ inst.region }} {{ inst.replicas }} {{ inst.cpu }} / {{ inst.memory }} {% if inst.status == "running" %} Running {% elif inst.status == "pending" %} Pending {% else %} {{ inst.status }} {% endif %}
{% else %}

No compute instances running

Create a forage/containers destination and deploy to get started.

{% endif %} {% if rollouts | length > 0 %}

Recent Rollouts

{% for rollout in rollouts %}
{% if rollout.status == "succeeded" %} {% elif rollout.status == "in_progress" %} {% elif rollout.status == "failed" %} {% else %} {% endif %} {{ rollout.apply_id }} {{ rollout.resources | length }} resource{% if rollout.resources | length != 1 %}s{% endif %}
{{ rollout.status }}
{% endfor %}
{% endif %}
{% endblock %}