{% extends "marketplace/layout.html" %} {% block title %}Mycelium Marketplace - Compute Resources{% endblock %} {% block marketplace_content %}

Compute Resources (Slices)

Find and acquire the compute resources you need for your workloads.

Filter Resources
Clear
{% if compute_products and compute_products | length > 0 %}
{% for product_data in compute_products %} {% endfor %}
Type Provider Location vCores RAM Storage (SSD) Uptime SLA Bandwidth SLA Price/Hour Actions
{{ product_data.product.name }}
{% if product_data.product.attributes.cpu_cores %} {{ product_data.product.attributes.cpu_cores.value }}x Base Unit {% else %} Compute slice {% endif %}
{% if product_data.product.attributes.resource_provider_email %} {{ product_data.product.attributes.resource_provider_email.value | truncate(length=15) }} {% else %} {% if product_data.product.provider %}{{ product_data.product.provider }}{% else %}Unknown{% endif %} {% endif %}
{% if product_data.product.metadata.location %} {{ product_data.product.metadata.location }} {% else %} - {% endif %} {% if product_data.product.attributes.cpu_cores %} {{ product_data.product.attributes.cpu_cores.value }} cores {% else %} - {% endif %} {% if product_data.product.attributes.memory_gb %} {{ product_data.product.attributes.memory_gb.value }} GB {% else %} - {% endif %} {% if product_data.product.attributes.storage_gb %} {{ product_data.product.attributes.storage_gb.value }} GB {% else %} - {% endif %} {% if product_data.product.attributes.uptime_percentage %}
{{ product_data.product.attributes.uptime_percentage.value | format_decimal(precision=1) }}%
{% else %} - {% endif %}
{% if product_data.product.attributes.bandwidth_mbps %}
{{ product_data.product.attributes.bandwidth_mbps.value }} Mbps
{% else %}
1000 Mbps
{% endif %}
{{ product_data.formatted_price }}
View
{% else %}

No Compute Resources Available

Check back later for new compute resources.

{% endif %} {% if pagination and pagination.total_pages > 1 %}
Showing page {{ pagination.current_page + 1 }} of {{ pagination.total_pages }} ({{ pagination.total_count }} total compute resources)
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}