Documentation
¶
Overview ¶
applylive.go — the ONE version-monotonic deploy mechanic shared by the image-source path (deployImage) and the git build reconciler.
Both paths must write the operator Service CR (applyService) AND advance the app's live pointer (FinalizeLive). FinalizeLive is already an atomic, monotonic CAS so the recorded live version can never regress. The remaining gap (RED LOW-1) is the CR write itself: two concurrent deploys of the SAME app could interleave so that an OLDER deploy's applyService lands AFTER a NEWER one already went live, leaving the live Service CR image lagging the recorded live version. applyLive closes that gap by running supersede-check → applyService → FinalizeLive as one per-app-serialized critical section: an older deploy that loses the race is superseded and never writes its (older) CR.
console.go — the flat, top-level console aggregates that the Hanzo Cloud Console's Environments / Pipelines / Builds / Releases pages render. They are NOT a new data model: every row is DERIVED from the SAME per-org project / application / deployment / build records the /v1/platform surface already owns (platform.go, deploy.go, store.go). One store, one deploy mechanic, four read-only projections:
- environment → a deploy target: the distinct Application.Environment values across the org's apps, each aggregating the apps that target it.
- pipeline → an app's build/deploy configuration + its latest run (one pipeline per application).
- build → a REAL arcd BuildKit build record (platform_builds); the git build step of a deploy. Never fabricated — real records or an honest empty.
- release → a deployment that was actually applied to the cluster (status deploying|live): a released image tag on an app/environment.
All four are GET-only. A pipeline/build/release is CREATED only through the ONE existing write path — POST /v1/platform/projects/{p}/apps (create app) and .../deploy (trigger a build+deploy) — so there is exactly one way to make them, never a duplicate trigger here. Environments are a scope derived from apps, not a standalone record, so there is nothing to create/delete independently either.
Every handler is org-scoped through the SAME validated-principal gate as the rest of the platform surface (s.tenant → requires c.User(); org is the only tenancy key). The response is a `{ "<plural>": [...] }` object — the exact shape the console FE normalizers read (r.environments / r.pipelines / r.builds / r.releases).
deploy.go — the deploy lifecycle for /v1/platform: build (arcd BuildKit) + deploy (operator Service CR) + start/stop + deployment history/logs.
Two source kinds, ONE deploy mechanic (write the operator Service CR into tenant-<org>; the operator reconciles):
- source=image — no build. The CR is applied immediately with the requested image tag; the operator rolls it. This is the fully end-to-end path.
- source=git — a build is required. An in-cluster BuildKit Job is launched (client-go, the arcd model) to build the repo and push the per-tenant image; the deployment lands "building". The build watcher that flips "building"→"live" by applying the CR with the built image is phase 2 (paas-in-cloud.md §4) — until then the git path stops honestly at "building" with the real Job reference, never a fabricated "live".
Every handler is org-scoped (s.tenant) and every cluster write targets tenant-<org> derived from the validated org — never a request value.
domains.go — customer-self-serve domain management for /v1/platform apps: the default host, org-subtree hosts, and VERIFIED BYO custom domains (`yourco.com`), all rendered into the app's operator Service CR ingress so the operator materializes the Ingress + cert-manager TLS. Two host classes, one render source (the app's DomainsJSON):
- default / org-subtree host (`*.<org>.<sitesHost>`) — STRUCTURAL: the org owns its whole subtree by construction, so these are active the moment they are added; no ownership proof is possible or needed.
- BYO custom host (arbitrary `yourco.com`) — needs an OWNERSHIP proof before it can be rendered, or a tenant could claim a host it does not control (the RED hijack boundary). The customer publishes a per-claim TXT token at `_hanzo-challenge.<host>`; only someone who controls that zone's DNS can, so a matching token proves control (the DNS-01 model). Until verified, the claim is a pending row that is NEVER in the ingress. Global uniqueness (one org per host) is the `platform_domains.host` PRIMARY KEY.
Every handler is org-scoped through s.tenant and mutates only tenant-<org>.
k8s.go — the cluster-facing half of /v1/platform: the ONE deploy path.
A user application is deployed by writing an operator hanzo.ai/v1 `App` CR into the caller's OWN tenant namespace; the Hanzo operator reconciles it into a Deployment + Service + Ingress (+ HPA/PDB) on DOKS. cloud never reimplements a deployer — it writes one CR, exactly like clients/paas reads system CRs, but here every object lives in `tenant-<org>` where the org is the gateway-minted, IAM-VALIDATED tenant (c.Org()), never a value from the request body or path. That derivation is the whole cross-tenant isolation boundary: a caller cannot name another org's namespace because the namespace is not an input.
Builds (git-source apps) launch an in-cluster BuildKit Job (the arcd model, buildkit-job.ts) via client-go — no GitHub builders. When the cluster / CI prerequisites are absent the subsystem fails CLOSED with the real reason (never status-theater), matching paas.
logs.go — REAL deployment logs for /v1/platform (the deploy.go phase-2 gap).
deploymentLogs previously returned only the recorded status timeline + a Job reference, ending with a "(live BuildKit Job logs stream in phase 2)" note. This closes that gap: it streams the ACTUAL pod logs from the cluster — the BuildKit Job's pod for a git build, and the running app's pod for a deployed app — via the typed CoreV1 client's Pods().GetLogs subresource. Everything stays operator- consistent and org-scoped: the app's pods are read from tenant-<org> (the same isolation namespace the Service CR lives in), the build pod from the central build namespace by the deterministic job-name label. It NEVER fabricates output — an unreachable cluster or an absent pod yields the honest recorded timeline instead, exactly as the rest of the subsystem degrades.
Package platform is the Hanzo Cloud PaaS control plane: the per-org, user-facing Platform-as-a-Service, mounted natively in the unified cloud binary at /v1/platform (HIP-0106). It is the Go port of the standalone Dokploy (platform.hanzo.ai) tRPC backend — the culmination of "one binary ships all of Hanzo Cloud."
Relationship to the sibling subsystems:
- clients/paas (/v1/paas) — the ADMIN fleet drift board: observes + deploys SYSTEM Service CRs across the platform namespaces, SuperAdmin only. It answers "what is the fleet running, and roll a tag."
- clients/projects (/v1/projects) — per-org STATIC sites (S3 hosting).
- clients/platform (/v1/platform) — THIS: per-org CONTAINER apps. Users create projects + applications, build them (arcd BuildKit) and deploy them (operator hanzo.ai/v1 Service CR into their OWN tenant-<org> namespace).
All three share the ONE deploy mechanic — write an operator CR, let the operator reconcile — but /v1/platform is per-tenant: every route is scoped to the gateway-minted, IAM-VALIDATED X-Org-Id (c.Org()); the deploy namespace is DERIVED from that org (tenant-<org>), never taken from the request. A tenant can never read, build, or deploy into another org's namespace. That is the red-team bar and it is structural: cross-tenant identifiers are simply not inputs to any handler.
The API is designed-first in Goa (clients/platform/design; `goa gen` emits the OpenAPI 3 contract at clients/platform/design/gen/http/openapi3.*). The runtime handlers below implement that contract natively on zip so the binary keeps ONE router and stays behind the SanitizeIdentity trust boundary.
preview.go — the Vercel-defining release flows for /v1/platform, all built on the ONE deploy mechanic (deploy.go's deployTagCore → applyLive; write the operator Service CR, the operator reconciles). Nothing here re-implements a deployer or a CR writer:
- preview — deploy an already-built image to a PER-BRANCH target that is a first-class Application of its own (slug "<app>-<branch>", its own default host "<app>-<branch>.<org>.<sitesHost>"), isolated from prod by a distinct CR name + host in the SAME tenant-<org> namespace. Returns the preview URL.
- promote — set the PROD app's image to an already-built tag or a prior deployment's exact image (forward: pick an artifact, make it prod).
- rollback — redeploy a prior deployment's image (backward: the previous release, resolved from the deployments store).
Every handler is org-scoped through s.tenant and every cluster write targets tenant-<org> derived from the VALIDATED org — never a request value.
projects.go — the project LIFECYCLE port. Projects are owned by Hanzo IAM (hanzo.id), the ONE source of truth for the org-scoped (owner,name) project resource. Platform REFERENCES that store; it never persists a project row of its own. Applications still live under a project (the platform_apps.project_id column is the project NAME), but create/list/get/delete/exists of the bare project delegate here.
IAM is embedded in the SAME cloud binary (clients/iam mounts the whole Beego handler; iamserver.InitEmbed wires the shared object store), so the reference is an IN-PROCESS call into github.com/hanzoai/iam/object — no HTTP hop to /v1/iam, and IAM's canonical *object.Project is used verbatim, never cloned into a platform-local struct. This couples platform to the embedded IAM runtime: a cloud deployment that enables "platform" MUST also enable "iam" (both are single-binary co-residents by design), else the object store's engine is nil and a project call fails.
push.go — git-push-to-deploy: turn a push landed on the embedded git server (clients/git) into a build for every app that tracks that repo+branch.
Wiring is inverted so git never imports platform: platform registers buildFromPush as the cloud.PushBuilder in Mount; clients/git calls cloud.OnGitPush after a push lands, which dispatches here. Best-effort by contract — a build-trigger failure never fails the push the client committed.
reconcile.go — the git build→deploy handoff (formerly deploy.go's "phase 2").
deployGit launches an in-cluster BuildKit Job and lands the deployment "building"; it does NOT block the HTTP request waiting for the build. This reconciler is the ONE owner of what happens next: it periodically scans every deployment still "building", checks its Job, and on success applies the operator Service CR with the built image — the SAME applyService the image-source path uses — flipping build→succeeded, deployment→deploying, app→live. The operator then reconciles the rollout.
Why a reconciler and not a per-deploy goroutine: state lives in the store, not in memory, so a cloud restart mid-build RESUMES cleanly (the next tick re-reads "building" rows). It is idempotent (applyService is create-or-update; a row is advanced off "building" once handled) and org-scoped (every write targets tenant-<row.Org>, derived from the row, never a request value).
release.go — native release semantics on the /v1/runner build path.
This is the in-cloud port of .github/workflows/release.yml: cloud self-publishes ghcr.io/hanzoai/cloud with the SAME invariant the workflow exists to enforce —
a git tag v<X.Y.Z> exists ⇔ an image ghcr.io/hanzoai/cloud:v<X.Y.Z> was pushed AND booted to "listening" in the smoke test.
The tag is a RECEIPT for a proven image, minted only AFTER a successful push + smoke — never a trigger for a build that might fail. The order is inverted from the old tag-triggers-build design (which left phantom tags with no image behind them → ImagePullBackOff): main push → compute version → build → smoke → tag → notify, so any failure fails BEFORE the tag and leaves no receipt.
The whole pipeline is four injectable seams (releasePlan) run in strict order (run), so the ordering invariant is enforced by construction and unit-tested hermetically, while each concrete step (a k8s Job for build/smoke, a GitHub API call for tag/notify) is wired once in releaseFor.
run.go — POST /v1/run, the container-serverless one-shot.
It is the single-call shortcut over the project → app → deploy flow: given an image (and optional port / scale bounds / env), it create-or-updates an image-source Application in the org's default project and writes the operator hanzo.ai/v1 Service CR through the ONE shared writer (k8sClient.applyService / serviceCR), so a run is a first-class Application — listable, stoppable and redeployable via the /v1/platform routes — and re-running the same name UPDATES it in place (idempotent). There is NO parallel Service-CR writer here: this handler reuses deploy.go's machinery (s.tenant, the store, sealSecretEnv, seedDefaultDomain, applyService) end to end.
Every cluster write targets tenant-<org> derived from the VALIDATED org (s.tenant → provisioning.SanitizeOrg), never a request value — the same cross-tenant isolation boundary as the rest of platform.
runner.go — POST /v1/runner: the native, privileged build endpoint.
This is the no-GitHub-builders build trigger that `hanzo build`, the git-push-to-deploy hook, and cloud's own self-release all call. It replaces the old /v1/arcd surface: one native build API on the runner fabric.
It differs from the tenant path (/v1/platform/.../deploy, which FORCES a per-tenant image ref): a /v1/runner build is PRIVILEGED — the caller supplies the output image — so it is gated two ways:
- a shared build-callback token (constant-time), and
- an image-ref allowlist restricted to the org registries we own,
so a leaked token can never push to an arbitrary registry.
secrets.go — KMS-sealed secret env vars for /v1/platform apps (closes the createApp/setEnv 501). A user env var flagged `secret:true` is NEVER stored in platform.db and NEVER rendered inline into the operator Service CR. Instead the ONE secret invariant holds end-to-end: a secret value lives ONLY in KMS and the operator-materialized k8s Secret; cloud's control-plane DB holds a masked placeholder and cloud never handles the plaintext at deploy time.
The path a secret takes:
- SEAL — cloud seals the value into its embedded KMS (deps.KMS, AES-256-GCM envelope, clients/kms) at the ORG-SCOPED coordinate /orgs/<org>/platform/ <app>/<KEY> (kmsSecretRef). Plaintext is sealed before it touches disk, never logged, never echoed back over the API (toAppView masks it). If KMS is unavailable the write FAILS CLOSED — plaintext never lands in the DB.
- PROVISION — on app-create/deploy, cloud ensures the tenant's PER-TENANT KMS credential exists (ensureTenantKMSAuth): a machine identity whose token carries owner=<org>, projected into tenant-<org> as the creds Secret the CR references. It is the ONE privileged step; when unavailable it degrades to an honest "pending" (never a shared reader), so no cross-tenant identity is ever created.
- DECLARE — cloud writes a canonical KMSSecret CR (secrets.lux.network/ v1alpha1) into tenant-<org> pointing the operator at /v1/kms/orgs/<org>/ secrets/platform/<app> (projectSlug=<org>, explicit keys). The operator logs in with the per-tenant creds (/v1/kms/auth/login → IAM), reads each key back from cloud's KMS, and materializes the managed Secret `<app>-env`. Cloud's org-scope guard admits the read ONLY for owner==<org>, so a tenant can read ONLY its own scope. Best-effort: a missing CRD/RBAC/credential degrades to a "pending" status, never a failed deploy.
- MOUNT — the Service CR renders each secret env as `valueFrom.secretKeyRef` → that Secret (optional, so the pod boots even before the sync lands); the hanzo operator mounts it into the Deployment env. The pod reads the secret from the k8s Secret — cloud is never in the plaintext path at runtime.
Everything is org-scoped: the KMS coordinate, the auth identity, the KMSSecret CR, and the managed Secret all live under the VALIDATED tenant, never a request value — the same cross-tenant boundary as the rest of /v1/platform, enforced at cloud's ONE auth boundary (SanitizeIdentity + the kms org-scope guard).
validate.go — the boundary validators + resource-bound policy for /v1/platform.
Three concerns, one home (DRY), because all three feed the SAME privileged cluster path (a BuildKit Job + operator Service CR in tenant-<org>):
- build-input validation — repo.url / dockerfile / git-ref are the ONLY free-form strings that flow into the in-cluster build. They are validated here so they can never be misread as a separate buildctl argument, a shell token, a path escape, or a git-context fragment break. Combined with the exec-form argv in launchBuildJob (no `sh -c`), this closes OS command injection AND the `--output`/`--opt` override class (CRIT-1).
- replica bounds — clampReplicas caps a tenant's requested replica count so a single app cannot request an unbounded Deployment (part of MED-3).
- namespace resource bounds — a ResourceQuota + LimitRange are applied to every tenant namespace so a tenant's TOTAL footprint is capped in the cluster regardless of what slipped past the per-object clamp (defense in depth for MED-3). Concurrent build fan-out is capped in k8s.go using resourceLimits.maxConcurrentBuilds below.
Every bound is a hard-coded safe default, operator-overridable via env — the values are resolved ONCE at k8sClient construction so a request path never re-reads the environment and the tests are deterministic.
Index ¶
- func Mount(app *zip.App, deps cloud.Deps) error
- func Shutdown() error
- type Application
- type Build
- type Deployment
- type Domain
- type EnvVarJSON
- type ProjectStore
- type Store
- func (s *Store) Close() error
- func (s *Store) CreateApplication(ctx context.Context, a Application) error
- func (s *Store) CreateDomain(ctx context.Context, d Domain) error
- func (s *Store) DeleteApplication(ctx context.Context, org, projectID, slug string) (Application, bool, error)
- func (s *Store) DeleteDomain(ctx context.Context, org, appID, host string) (bool, error)
- func (s *Store) DeleteProjectApps(ctx context.Context, org, project string) ([]Application, error)
- func (s *Store) FinalizeLive(ctx context.Context, d Deployment, imageTag, namespace string, now int64) (bool, error)
- func (s *Store) GetApplication(ctx context.Context, org, projectID, slug string) (Application, error)
- func (s *Store) GetApplicationByID(ctx context.Context, org, id string) (Application, error)
- func (s *Store) GetBuild(ctx context.Context, org, id string) (Build, error)
- func (s *Store) GetDeployment(ctx context.Context, org, appID, id string) (Deployment, error)
- func (s *Store) GetDomain(ctx context.Context, org, appID, host string) (Domain, error)
- func (s *Store) InsertBuild(ctx context.Context, b Build) error
- func (s *Store) InsertDeployment(ctx context.Context, d Deployment) error
- func (s *Store) ListAllApplications(ctx context.Context, org string) ([]Application, error)
- func (s *Store) ListApplications(ctx context.Context, org, projectID string) ([]Application, error)
- func (s *Store) ListBuildingDeployments(ctx context.Context) ([]Deployment, error)
- func (s *Store) ListBuildsByOrg(ctx context.Context, org string) ([]Build, error)
- func (s *Store) ListDeployments(ctx context.Context, org, appID string) ([]Deployment, error)
- func (s *Store) ListDeploymentsByOrg(ctx context.Context, org string) ([]Deployment, error)
- func (s *Store) ListDomainsByApp(ctx context.Context, org, appID string) ([]Domain, error)
- func (s *Store) LookupDomain(ctx context.Context, host string) (Domain, bool, error)
- func (s *Store) MarkDomainVerified(ctx context.Context, org, appID, host string, now int64) (bool, error)
- func (s *Store) NextVersion(ctx context.Context, appID string) (int, error)
- func (s *Store) UpdateApplication(ctx context.Context, a Application) error
- func (s *Store) UpdateBuild(ctx context.Context, b Build) error
- func (s *Store) UpdateDeployment(ctx context.Context, d Deployment) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Application ¶
type Application struct {
ID string
Org string
ProjectID string // the IAM project NAME (owner=org,name) this app lives under
Slug string
Name string
Description string
Environment string
Source string // git | image
RepoURL string
RepoBranch string
RepoProvider string
ImageRepo string
ImageTag string
BuildType string
Dockerfile string
Port int
Replicas int
MinScale int // container-serverless autoscaling floor (0 ⇒ no HPA, fixed Replicas). Set by /v1/run.
MaxScale int // container-serverless autoscaling ceiling (0 ⇒ no HPA). Set by /v1/run.
EnvJSON string
DomainsJSON string
Status string
Namespace string
CurrentDeploy string
CreatedAt int64
UpdatedAt int64
}
Application is a deployable unit under a project (Dokploy: application). It deploys as an operator hanzo.ai/v1 Service CR in the tenant-<org> namespace. EnvJSON/DomainsJSON hold JSON-encoded []EnvVar / []string; secrets are never stored here (secret env is rejected at the boundary until KMS sealing lands).
type Build ¶
type Build struct {
ID string
Org string
ApplicationID string
DeploymentID string
Status string
Image string
JobName string
LogsRef string
CreatedAt int64
UpdatedAt int64
}
Build is one arcd (in-cluster BuildKit) build record (Dokploy fork: build_job).
type Deployment ¶
type Deployment struct {
ID string
Org string
ApplicationID string
Version int
Status string
Source string
Commit string
Image string
BuildID string
Message string
CreatedAt int64
UpdatedAt int64
}
Deployment is one immutable build+deploy attempt for an application, versioned monotonically per app (Dokploy: deployment).
type Domain ¶
type Domain struct {
Host string
Org string
ProjectID string
AppID string
AppSlug string
Status string // pending | verified
Token string
CreatedAt int64
VerifiedAt int64
}
Domain is a BYO custom (arbitrary-host) domain a tenant has claimed for an application — `yourco.com` / `app.yourco.com`. The org's own hanzo.app subtree hosts and the app's default host are STRUCTURAL (they live in the app's DomainsJSON and are validated by suffix), so they are NOT rows here; this table exists for the two things a custom host needs that a subtree host does not:
- GLOBAL UNIQUENESS — Host is the PRIMARY KEY, so exactly one org can ever claim `yourco.com` (the site_hosts model). A second org's claim collides.
- an OWNERSHIP-VERIFICATION lifecycle — Status pending → verified, gated on a DNS challenge Token the customer publishes at `_hanzo-challenge.<host>`.
A custom host is rendered into the app's operator ingress (added to DomainsJSON) ONLY once its row is `verified` — an unverified claim never reaches the CR.
type EnvVarJSON ¶
type EnvVarJSON struct {
Key string `json:"key"`
Value string `json:"value"`
Secret bool `json:"secret"`
}
EnvVarJSON is the JSON shape of one application env var as stored/served.
type ProjectStore ¶ added in v1.786.216
type ProjectStore interface {
List(ctx context.Context, org string) ([]*iamobj.Project, error)
// Get returns nil (no error) when the project does not exist — IAM's convention.
Get(ctx context.Context, org, name string) (*iamobj.Project, error)
Create(ctx context.Context, org, name, display, description string) (*iamobj.Project, error)
Delete(ctx context.Context, org, name string) (bool, error)
Exists(ctx context.Context, org, name string) (bool, error)
}
ProjectStore is platform's org-scoped view of the IAM-owned project lifecycle. Every method is scoped to org (the validated owner) and keyed by the project name — there is no platform-minted project id; the IAM identity is (org,name), and that name is the app-scope key AND the operator CR `part-of` label. The value type is IAM's canonical *object.Project, so there is exactly ONE project model across the binary.
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store is the platform metadata database. ONE SQLite file ({DataDir}/platform.db) holds every org's records; tenancy is the org column. MaxOpenConns(1) serializes writes against the file lock without busy retries, matching projects/provisioning.
func (*Store) CreateApplication ¶
func (s *Store) CreateApplication(ctx context.Context, a Application) error
func (*Store) CreateDomain ¶
CreateDomain claims a custom host for an app. Host is the PRIMARY KEY, so a second claim of the SAME host (by any org, any app) collides → errConflict. This is the global-uniqueness boundary (two orgs can never both claim `yourco.com`).
func (*Store) DeleteApplication ¶
func (s *Store) DeleteApplication(ctx context.Context, org, projectID, slug string) (Application, bool, error)
DeleteApplication removes an app plus its deployments/builds, scoped to org.
func (*Store) DeleteDomain ¶
DeleteDomain releases a custom domain claim, org+app scoped. Reports whether a row was removed.
func (*Store) DeleteProjectApps ¶ added in v1.786.216
DeleteProjectApps removes every application/deployment/build/domain under a project (keyed by the IAM project NAME) in ONE transaction, all scoped to org, and returns the removed apps so the caller can tear down their operator CRs. The project row itself lives in IAM (see projects.go) — deleting it is the caller's separate ProjectStore.Delete; this wipes only platform's app tree.
func (*Store) FinalizeLive ¶
func (s *Store) FinalizeLive(ctx context.Context, d Deployment, imageTag, namespace string, now int64) (bool, error)
FinalizeLive advances an application to `live` at deployment d — atomically and MONOTONICALLY. It is the ONE way the platform marks an app live, shared by the synchronous image deploy (deploy.go) and the async git build reconciler (reconcile.go). The app is moved to this deployment ONLY when d's version is at least the version of the app's currently-live deployment: the guard is a single conditional UPDATE (SQLite serializes it under MaxOpenConns(1)), so an OLDER version whose write races in LATE can never overwrite a NEWER one already live — no read-then-write TOCTOU. Returns whether the app advanced (false ⇒ a newer version is already live, i.e. this deployment was superseded, or the app row is gone). Every predicate is org-scoped.
func (*Store) GetApplication ¶
func (s *Store) GetApplication(ctx context.Context, org, projectID, slug string) (Application, error)
GetApplication resolves an app by (org, project_id, slug) — the org is ALWAYS in the predicate so a caller can never read another tenant's app.
func (*Store) GetApplicationByID ¶
GetApplicationByID resolves an app by (org,id) for deployment/build lookups.
func (*Store) GetDeployment ¶
func (*Store) GetDomain ¶
GetDomain resolves a custom domain scoped to (org, app_id, host) — the tenant path used by verify/delete. Org is always in the predicate so a caller can never read another tenant's domain row.
func (*Store) InsertDeployment ¶
func (s *Store) InsertDeployment(ctx context.Context, d Deployment) error
func (*Store) ListAllApplications ¶
ListAllApplications returns every application under org across ALL its projects, newest-updated first. It is the org-wide input to the console aggregates (environments/pipelines/builds/releases in console.go). Org is the ONLY predicate — the SAME tenancy boundary as every other query — so it can never surface another tenant's apps.
func (*Store) ListApplications ¶
func (*Store) ListBuildingDeployments ¶
func (s *Store) ListBuildingDeployments(ctx context.Context) ([]Deployment, error)
ListBuildingDeployments returns every deployment still in the "building" state across ALL orgs, oldest first. It is the input to the build reconciler (reconcile.go), which owns the git build→deploy handoff. Because the query is keyed on status (not org), the reconciler resumes in-flight builds after a cloud restart — the goroutine is stateless; the store IS the state. Every write the reconciler then makes is still org-scoped (tenant-<row.Org>).
func (*Store) ListBuildsByOrg ¶
ListBuildsByOrg returns every build record for org across ALL apps, newest-created first. Org-wide input to the console builds aggregate (console.go); org is the only tenancy predicate. These are REAL BuildKit build records — the aggregate never fabricates a build that did not run.
func (*Store) ListDeployments ¶
func (*Store) ListDeploymentsByOrg ¶
ListDeploymentsByOrg returns every deployment for org across ALL apps, newest-created first. Org-wide input to the console releases/pipelines aggregates (console.go); org is the only tenancy predicate.
func (*Store) ListDomainsByApp ¶
ListDomainsByApp returns every custom domain claimed for an app, org-scoped.
func (*Store) LookupDomain ¶
LookupDomain resolves a host GLOBALLY (across every org) — the uniqueness probe. It is the ONLY store read not scoped to a caller's org, and exists solely so the add-domain handler can answer "is this host already claimed, and by whom" to decide a 409. The caller MUST NOT echo a foreign row's details back to a tenant (it reveals only that the host is taken, never by whom).
func (*Store) MarkDomainVerified ¶
func (s *Store) MarkDomainVerified(ctx context.Context, org, appID, host string, now int64) (bool, error)
MarkDomainVerified flips a pending custom domain to verified, org+app scoped. Reports whether a row advanced (false ⇒ no such pending row for this tenant).
func (*Store) NextVersion ¶
func (*Store) UpdateApplication ¶
func (s *Store) UpdateApplication(ctx context.Context, a Application) error
UpdateApplication overwrites the mutable fields of an app; org+project+slug+id are immutable and form the tenancy/identity key.
func (*Store) UpdateDeployment ¶
func (s *Store) UpdateDeployment(ctx context.Context, d Deployment) error