Wrenn Admin — {capsuleId}
{#if capsuleLoading}
Loading capsule...
{:else if capsuleError}
{capsuleError}
{:else if capsule}
Capsules
{capsuleId} {#if capsule.status === 'running'} {/if} {capsule.status}
{capsule.template} / {capsule.vcpus}v · {capsule.memory_mb}MB
{#if capsule.status === 'running' || capsule.status === 'paused'} {/if}
{#if metricsAvailable}
{/if}
{/if}
{#if showSnapshot}
{ if (!snapshotting) showSnapshot = false; }} onkeydown={(e) => { if (e.key === 'Escape' && !snapshotting) showSnapshot = false; }} >

Snapshot as platform template

{capsuleId}

This will pause, snapshot, and destroy the capsule. The snapshot will be available as a platform template for all teams.

{#if snapshotError}
{snapshotError}
{/if}
optional
{ if (e.key === 'Enter' && !snapshotting) handleSnapshot(); }} />

Leave blank for an auto-generated name. If the name already exists, it will be overwritten.

{/if} {#if showDestroy}
{ if (!destroying) showDestroy = false; }} onkeydown={(e) => { if (e.key === 'Escape' && !destroying) showDestroy = false; }} >

Destroy Capsule

Terminate {capsuleId} and destroy all data inside it. This cannot be undone.

{#if destroyError}
{destroyError}
{/if}
{/if}