Overview
StrataGateway Cloud Compute is being designed to provide virtual machine instances with predictable performance, straightforward configuration, and developer-friendly control.
Instance lifecycle
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
PlannedImages
Images define the operating system installed during provisioning. Custom images and snapshots may be introduced later as the platform roadmap matures.
Planned image catalog
PlannedRegions
A region represents a physical infrastructure location used to host compute resources.
Planned regions
PlannedRegion availability will expand gradually as StrataGateway infrastructure is deployed.
Explore region planningStorage
Local instance storage
Storage attached directly to the compute host for the instance runtime environment.
Block Storage
PlannedPersistent volumes designed to be attached independently from the instance lifecycle.
Block Storage docsObject Storage
PreviewAPI-accessible storage for application data and static objects.
Object Storage docsNetworking
- 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 access with explicit key
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.
Lifecycle actions
Preview controls
Start
Power on a stopped instance.
PreviewStop
Power off the instance using the provider stop semantic.
PreviewReboot
Restart the operating system using the provider reboot operation.
PreviewRebuild
Deferred; replacement and bootstrap semantics are not implemented.
PlannedDelete
Permanently remove the instance.
PreviewDeleting an instance is intended to be irreversible. Persistent storage behavior will depend on the attached storage configuration.
API preview
REST API Preview
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
{
"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 documentationExample instance
ExampleName
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?