> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nuon.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Install Nuon BYOC

> Let Nuon install and manage Nuon in your own cloud account

Nuon BYOC gives you a single-tenant Nuon control plane running in your own AWS, Azure, or Google Cloud account. Nuon uses its own platform to remotely deploy and manage the control plane as an install — the same mechanism you use to deploy software to your customers. You get automatic upgrades, operational visibility, and lifecycle management while retaining full ownership of your data, networking, and compliance posture.

This deployment option is often referred to as Bring Your Own Cloud (BYOC), Cloud-Prem, or Vendor-Managed Self-Hosted.

Nuon BYOC requires a paid license. [Contact sales](https://nuon.co/contact-sales) to get started.

## Architecture

Nuon Cloud manages your BYOC control plane as an install — the same way your control plane will manage installs for your own customers. Upgrades, provisioning, and lifecycle operations are all driven remotely by Nuon.

```mermaid theme={null}
flowchart TD
    subgraph NuonCloud["Nuon Cloud"]
        NC_CTL["ctl-api"]
    end

    subgraph YourCloud["Your Cloud Account — AWS · Azure · GCP"]
        NR["Nuon Runner"]

        subgraph CP["Control Plane — EKS · AKS · GKE"]
            DASH["dashboard-ui"]
            CTL["ctl-api"]
            BR["Build Runner"]
        end

        subgraph Deps["Dependencies"]
            TMP["Temporal"]
            CH["ClickHouse"]
            DB[("Postgres")]
            REG[("Container Registry")]
            BLOB[("Blob Storage")]
        end
    end

    subgraph EndCustomers["Customer Clouds — AWS · Azure · GCP"]
        R["Nuon Runner"]
        I["Installs"]
    end

    NR -->|"polls for jobs"| NC_CTL
    NR -->|"deploys & manages\ncontrol plane"| CP

    DASH -->|"API calls"| CTL
    CTL --> TMP
    CTL --> CH
    CTL --> DB
    CTL --> BLOB
    CTL -->|"trigger builds"| BR
    BR -->|"push OCI artifacts"| REG

    R -->|"polls for jobs"| CTL
    R -->|"pull artifacts"| REG
    R -->|"deploys"| I
```

## Supported Platforms

* [AWS](/guides/byoc/aws) — Nuon deploys on EKS with RDS, ECR, Route 53, ACM, and Secrets Manager.
* [Azure](/guides/byoc/azure) — AKS with Azure SQL, ACR, Blob Storage, and Key Vault.
* [GCP](/guides/byoc/gcp) — GKE with Cloud SQL, GAR, GCS, and Secret Manager.
