{% extends "marketplace/layout.html" %} {% block title %}Project Mycelium - Rent Slice{% endblock %} {% block marketplace_content %}
Back to Compute Resources

Rent Compute Slice

{% if slice %}
Slice Details
Node: {{ slice.node_id }}
Resource Provider: {{ slice.resource_provider_email }}
Specifications:
  • {{ slice.cpu_cores }} CPU Cores
  • {{ slice.memory_gb }} GB RAM
  • {{ slice.storage_gb }} GB Storage
Price: ${{ slice.price_per_hour }}/hour
Available: {{ slice.available_quantity }} slices
Deployment Configuration
Number of slices to rent
VM Configuration
Alphanumeric characters and hyphens only
Paste your SSH public key for secure access
Additional Options
Cost Calculation
Base Price per Hour: ${{ slice.price_per_hour }}
Quantity: 1
Duration: 720 hours
Subtotal: ${{ slice.price_per_hour * 720 }}
K8s Multiplier: 1x

Total Cost: ${{ slice.price_per_hour * 720 }}
{% else %}

Slice Not Found

The requested slice combination could not be found.

Browse Available Slices
{% endif %}
{% endblock %}