Skip to main content

What is Ctrlplane?

Ctrlplane is the orchestration layer between your CI/CD pipelines and your infrastructure. Your CI builds code. Your compute run it. Ctrlplane decides when releases are ready, where they should deploy, and what gates they must pass—handling environment promotion, verification, approvals, and rollbacks automatically.
Your CI/CD    ──►    Ctrlplane    ──►    Your Infrastructure
 (builds)            (orchestrates)           (deploys)

The Problem

Most teams outgrow their deployment setup around 10-20 services. Common symptoms:
  • Manual promotion: Someone has to remember to deploy to prod after staging looks good
  • No verification: Deployments succeed, but did the service actually work?
  • Scattered visibility: “What version is running in eu-west-1 prod?” requires checking multiple dashboards
  • Inconsistent policies: Some services require approval, some don’t—it’s tribal knowledge
  • Painful multi-region: Deploying to 10 compute resources means running 10 pipelines
  • No source of truth for infrastructure: Resources are scattered across Kubernetes, cloud providers, and spreadsheets—no unified view
  • Static deployment targets: Adding a new cluster means updating configs everywhere instead of having it automatically included

How Ctrlplane Solves This

Ctrlplane provides two core systems:

1. Deployment Orchestration

Define what should deploy where and when—Ctrlplane handles the coordination. Key Capabilities:
  • Environment Progression — Automatically promote from staging → production when verification passes
  • Policy Gates — Require approvals, wait for dependencies, enforce deployment windows
  • Automated Verification — Query Datadog, Prometheus, or HTTP endpoints to confirm deployments are healthy
  • Gradual Rollouts — Deploy to targets sequentially with configurable intervals
  • Automatic Rollback — If verification fails, roll back without manual intervention
Common Use Cases:
  • Multi-region deployments with sequential promotion
  • Platform teams managing deployments for 100+ microservices
  • Enforcing deployment policies across engineering organizations
  • Gating production deployments on staging verification

2. Infrastructure Inventory

A single source of truth for what exists and what’s running where across your entire infrastructure—regardless of provider. Key Capabilities:
  • Resource Discovery — Auto-sync resources from Kubernetes, AWS, GCP, or custom providers into a unified inventory
  • Dynamic Environments — Define “production” as all resources with env=prod metadata—new clusters automatically join
  • Version Tracking — See which version of each service is deployed to every resource in real-time
  • Custom Relationships — Model dependencies, ownership, and connections between services and infrastructure
  • Rich Metadata — Tag resources with arbitrary metadata for filtering, grouping, and policy targeting
Common Use Cases:
  • Understanding service dependencies across your infrastructure
  • Building dynamic deployment targets based on resource attributes
  • Tracking which version is deployed where across all environments
  • Creating custom views for different teams (backend services, data pipelines, etc.)

Who Is Ctrlplane For?

TeamUse Case
Platform EngineeringBuilding an IDP with deployment orchestration and infrastructure visibility
DevOps / SREEnforcing deployment policies and tracking what’s running where
Scaling StartupsMoving from “we manually deploy” to automated, policy-driven releases
Multi-region TeamsCoordinating deployments across clusters/regions with a unified inventory
Multi-cloud TeamsManaging resources across AWS, GCP, Azure, and K8s from a single pane

When to Use Ctrlplane

ChallengeHow Ctrlplane Helps
Multi-environment promotion is manualAutomated environment progression with policy gates
No visibility into what’s deployedReal-time inventory of resources and their versions
Deployments lack verificationIntegrated verification with Datadog, Prometheus, HTTP checks
Rollbacks are slow and manualAutomatic rollback on verification failure
Infrastructure spread across providersUnified inventory synced from K8s, AWS, GCP, and custom sources
Adding new clusters requires config changesDynamic environments auto-include resources matching selectors
Different teams need different policiesFlexible policy engine with environment/deployment selectors
Scaling deployment orchestrationHandle 1000s of release targets with a single deployment definition

Core Concepts

EntityDescription
SystemLogical grouping of related deployments (e.g., “Payment Stack”)
ResourceA deployment target (K8s cluster, VM, Lambda function)
EnvironmentLogical stage that groups resources (dev, staging, prod)
DeploymentA service or application to deploy
VersionA specific build/release of a deployment
Release TargetThe combination of Deployment × Environment × Resource
ReleaseA version deployed to a release target
JobThe execution unit that performs the deployment
PolicyRules governing approvals, progression, and verification

How It Fits Your Stack

Ctrlplane doesn’t replace your CI or your deployment tooling—it coordinates them:
LayerToolsWhat They Do
BuildGitHub Actions, GitLab CI, JenkinsBuild artifacts, create versions in Ctrlplane
InventoryCtrlplane + K8s, AWS, GCP, custom providersSync and track all resources in one place
OrchestrateCtrlplaneDecide when/where to deploy, enforce policies
ExecuteArgoCD, K8s Jobs, GitHub Actions, TerraformPerform the actual deployment
MonitorDatadog, PrometheusProvide metrics for verification

Next Steps