Deployment Guide

Note: The managed platform, operator dashboard, container images, and deployment tooling described on this page are under active development and not yet available. There is no running service at aegissystems.live today. The content below describes the planned deployment model. Check back soon.

This guide covers deployment options for integrating AEGIS governance into your infrastructure. AEGIS can be consumed as a managed service or self-hosted.

Deployment Options

The simplest path to production. The managed platform at aegissystems.live provides:

To get started:

  1. Create an organization at aegissystems.live
  2. Configure capabilities and policies through the dashboard
  3. Generate API keys for your AI agents
  4. Integrate using the SDK or API

Self-Hosted

For organizations that require on-premises deployment or have data residency requirements, AEGIS can be self-hosted. The self-hosted runtime provides the same governance capabilities as the managed platform.

Self-hosted deployment details will be published as the runtime implementation matures. See the aegis-governance repository for architecture specifications.

Integration Architecture

Sidecar Pattern

Deploy the AEGIS gateway as a sidecar alongside your AI agent:

+-------------------+     +-------------------+
|   AI Agent        |---->|  AEGIS Gateway    |----> External Systems
|   (your code)     |<----|  (sidecar)        |
+-------------------+     +-------------------+

Best for: Kubernetes deployments, microservice architectures.

Gateway Pattern

Deploy AEGIS as a centralized gateway that all AI agents route through:

AI Agent A ----+
               |     +-------------------+
AI Agent B ----+---->|  AEGIS Gateway    |----> External Systems
               |     |  (centralized)    |
AI Agent C ----+     +-------------------+

Best for: Multi-agent environments, centralized governance policy management.

SDK-Only Pattern

Use the SDK to call the managed platform API directly from your agent code. No additional infrastructure required:

AI Agent (with SDK) ----> AEGIS Platform API ----> Decision

Best for: Quick integration, teams that prefer managed infrastructure.

CI/CD Integration

Governance policies can be managed as code and deployed through your existing CI/CD pipeline:

  1. Define capabilities and policies in version-controlled configuration files
  2. Validate policies in CI (schema validation, conflict detection)
  3. Deploy policy updates via the Enforcement API
  4. Monitor rollout through the operator dashboard

The aegis-ops repository contains reference CI/CD workflows for policy deployment.

Network Requirements

The AEGIS governance gateway requires:

AI agents should be configured to route all external operations through the governance gateway. Direct access to external systems should be blocked at the network level.

Next Steps

Note: Deployment tooling and container images are under active development. This guide reflects the target deployment model. See the aegis-ops repository for current status.