00Products

Every primitive.
One manifest.

Compute, GPU, Kubernetes, databases, networking, CDN, security and storage — declared in YAML, rolled out across 40+ PoP in seconds.

Compute

Virtual machines from $0.99/mo. Hourly billing. Per-second metering.

  • NVMe SSD storage
  • Up to 96 vCPU per VM
  • Custom & predefined shapes
  • Live migration
  • Cloud-init / Ignition
compute.yamllive
kind: VM
spec:
  shape: standard.4
  region: ams-1
  image: ubuntu-24.04
  count: 3
  network: vpc-prod

GPU as a Service

H100, A100, L40S — on-demand, by the hour. No quotas. No waitlists.

  • NVIDIA H100 SXM5
  • A100 80GB / 40GB
  • L40S inference
  • InfiniBand interconnect
  • MIG partitioning
gpu.yamllive
kind: GPUNode
spec:
  type: nvidia-h100
  count: 8
  interconnect: infiniband
  region: fra-1

Managed Kubernetes

Upstream-compatible Kubernetes. Free control plane. kubectl works on day one.

  • Latest 3 k8s versions
  • Multi-AZ control plane
  • Cilium CNI
  • Autoscaling node pools
  • GPU node pools
kubernetes.yamllive
kind: Cluster
spec:
  version: 1.31
  region: lhr-1
  nodePools:
    - name: gpu
      shape: nvidia-l40s
      min: 1
      max: 8

Managed Databases

Postgres, MySQL, Redis, Kafka. HA, backups, PITR — all declared.

  • PostgreSQL 14–17
  • MySQL 8 / MariaDB
  • Redis 7 / Valkey
  • Kafka & Redpanda
  • Point-in-time recovery
databases.yamllive
kind: Database
spec:
  engine: postgres-16
  shape: db.large
  ha: true
  backups:
    retention: 30d

VPC & Networking

Private networks, subnets, route tables, peering — across regions.

  • Software-defined VPC
  • Cross-region peering
  • Private endpoints
  • BGP & static routing
  • IPv6 native
vpc.yamllive
kind: VPC
spec:
  cidr: 10.42.0.0/16
  subnets:
    - { az: a, cidr: 10.42.1.0/24 }
    - { az: b, cidr: 10.42.2.0/24 }

Anycast CDN

Programmable edge across every PoP. Built-in WAF. One config.

  • Anycast IPv4/IPv6
  • Edge functions (V8 isolates)
  • Image & video transforms
  • Cache rules as code
  • Built-in WAF
cdn.yamllive
kind: CDN
spec:
  origin: my-empire.web
  cache:
    rules:
      - path: /static/*
        ttl: 30d

DDoS Protection

L3/L4/L7 mitigation. Always on. No add-ons. No tiers.

  • 100 Tbps scrubbing
  • Sub-second mitigation
  • L7 challenge engine
  • Bot management
  • Free for every tenant
ddos.yamllive
kind: Shield
spec:
  enabled: true
  rules:
    - rateLimit: 1000/s
      path: /api/*

Object Storage

S3-compatible storage with zero egress to MNFST CDN.

  • S3 API compatible
  • Multi-region buckets
  • Versioning & lifecycle
  • Free egress to CDN
  • Per-object encryption
storage.yamllive
kind: Bucket
spec:
  name: my-empire-assets
  region: multi-eu
  versioning: true