Deployment and Infrastructure - AGI-Corporation/frontier-os-app-builder GitHub Wiki

Deployment and Infrastructure

Navigation: [Home]] ](/AGI-Corporation/frontier-os-app-builder/wiki/[Architecture) | [Agent Runtime and Sandbox]]

Overview

While Agent.bay is a decentralized marketplace, the underlying nodes can be hosted by anyone to contribute compute power and earn FND rewards. This page details the hardware and software requirements for deploying a Frontier Node.

Node Types

  1. Light Node: Only tracks the Pipeline Registry and handles task routing. Low resource requirements.
  2. Compute Node: Executes agents in a Agent Runtime and Sandbox. Requires high CPU/RAM and KVM support.
  3. Validator Node: Audits pipelines and participates in DAO Governance and Staking. Requires a high FND stake.

Minimum Hardware Requirements

Component Requirement
CPU 4+ Cores (Intel VT-x or AMD-V support)
RAM 16GB+
Storage 100GB NVMe SSD
Network 1Gbps Uplink
OS Ubuntu 22.04 LTS (Optimized for Firecracker)

Quick Start (Docker)

The easiest way to join the network is via our official Docker compose:

curl -sSL https://get.agent.bay/install.sh | bash
frontier-node up --compute

Infrastructure Components

Scaling and High Availability

For enterprise deployments, Frontier OS supports:

  • Kubernetes (K8s) Operator: Automates the scaling of compute nodes based on task queue depth.
  • S3-Compatible Storage: For persistent agent state and large datasets.
  • Global CDN Integration: For low-latency agent discovery.

Related Pages