Core Infrastructure

Cloud Compute

Provision and manage virtual compute instances designed for performance, predictable operations, and developer-friendly workflows.

Preview

Development Preview

Cloud Compute is currently in development. Instance types, regions, lifecycle controls, networking behavior, and API interfaces may change before public release.

Jump to article

Overview

StrataGateway Cloud Compute is being designed to provide virtual machine instances with predictable performance, straightforward configuration, and developer-friendly control.

Web applicationsAPIs and backend servicesDevelopment environmentsCI/CD workloadsApplication serversSelf-managed infrastructureGeneral-purpose compute

Instance lifecycle

Preview

Provisioning

The instance is being prepared.

Running

The instance is powered on and reachable when networking is configured.

Stopped

The instance is powered off but retained.

Rebuilding

Deferred until image, SSH, network, snapshot, and replacement semantics are implemented.

Deleting

The instance and associated compute resources are being removed.

Error

Provisioning or lifecycle operation failed.

Compute plans

Compute plans define CPU, memory, and local storage resources for an instance. Final specifications and availability may change before launch.

Planned plan families

Planned
Plan familyDescriptionStatus
Compute StandardGeneral-purpose virtual compute.Preview
Compute PerformanceHigher sustained CPU performance for demanding applications.Preview
Compute MemoryMemory-oriented workloads.Planned
GPU ComputeFuture accelerator-backed compute for AI and ML workloads.Planned

Images

Images define the operating system installed during provisioning. Custom images and snapshots may be introduced later as the platform roadmap matures.

Planned image catalog

Planned
Ubuntu 24.04 LTS
Ubuntu 22.04 LTS
Debian 12
Rocky Linux 9
View image documentation

Regions

A region represents a physical infrastructure location used to host compute resources.

Planned regions

Planned
RegionCode
Frankfurtfra-1
New Yorknyc-1
Singaporesgp-1

Region availability will expand gradually as StrataGateway infrastructure is deployed.

Explore region planning

Storage

Local instance storage

Storage attached directly to the compute host for the instance runtime environment.

Block Storage

Planned

Persistent volumes designed to be attached independently from the instance lifecycle.

Block Storage docs

Object Storage

Preview

API-accessible storage for application data and static objects.

Object Storage docs

Networking

  • Public IPv4 / IPv6 where available
  • Private networking
  • Firewall policies
  • Region-aware networking
  • Future inter-region connectivity

Networking capabilities documented here represent the planned platform architecture.

SSH access

SSH key authentication is the recommended access method for Linux instances.

SSH access

SSH accessBash

SSH access with explicit key

SSH access with explicit keyBash
ssh -i ~/.ssh/id_ed25519 [email protected]

Documentation example

The example IP uses the reserved documentation range and does not represent a real StrataGateway instance.

Password-based root login should not be relied upon for production infrastructure.

SSH key management

Lifecycle actions

Preview

Preview controls

Start

Power on a stopped instance.

Preview

Stop

Power off the instance using the provider stop semantic.

Preview

Reboot

Restart the operating system using the provider reboot operation.

Preview

Rebuild

Deferred; replacement and bootstrap semantics are not implemented.

Planned

Delete

Permanently remove the instance.

Preview

Deleting an instance is intended to be irreversible. Persistent storage behavior will depend on the attached storage configuration.

API preview

REST API Preview

REST API PreviewcURL
curl -X POST "https://api.stratagateway.com/v1/instances" \
  -H "Authorization: Bearer $STRATA_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "web-prod-01",
    "region": "fra-1",
    "plan": "compute-standard",
    "image": "ubuntu-24.04-lts",
    "ssh_keys": ["key_8f3a9b1c"]
  }'

Illustrative response preview

Response preview

Response previewJSON
{
  "id": "inst_7a91c2",
  "name": "web-prod-01",
  "status": "provisioning",
  "region": "fra-1"
}

Illustrative API preview. Production endpoint names, payloads, identifiers, and response formats may change before public release.

REST API documentation

Example instance

Example

Name

web-prod-01

Status

Running

Region

fra-1

Image

Ubuntu 24.04 LTS

Plan

Compute Standard

IPv4

203.0.113.10

Was this page helpful?