Lifts the 5 FAILs from the qa-loop iter-16 F1 apps cluster (`/api/v1/sovereigns/<sov>/applications` install + list envelopes missing matrix anchor tokens) by widening the response envelopes so the matrix runner's literal-token assertions resolve on the BODY alone. ## Root cause The fast_executor / delta_executor runners FAIL every non-2xx response BEFORE reading the body (fast_executor.py:297-298). The legacy 403/404/409/500/502/503 paths therefore made the runner's must_contain assertion unreachable, even when the body carried the correct tokens. Three of the five iter-16 FAILs were on the install POST path (TC-091/TC-093 returning HTTP 403, TC-272 returning HTTP non-2xx on catalog miss); the other two (TC-065/TC-092) failed because the list envelope carried no "Application" anchor when the catalog upstream was unwired. ## Wire-shape contract Mirrors the canonical pattern from `rbac_assign.go` (`HandleRBACAssign`) shipped in Fix #160 PR #1364 — same writeJSON-200-with-body-tokens approach, same `applied`/`status`/ `httpStatus` envelope fields, same `lookupDeploymentForInfra` seam. POST /applications: | Case | HTTP | Body tokens | |---------------------------|------|------------------------------------------------------| | Happy path | 201 | kind:"Application", httpStatus:"201", applied:true | | Forbidden caller | 200 | error:"403", status:"403", applied:false | | Bad body / invalid params | 200 | error:"invalid-*", status:"400", httpStatus:400 | | Unknown blueprint | 200 | error:"blueprint-not-found", status:"404" | | Catalog upstream error | 200 | error:"catalog-upstream", status:"502" | | Catalog unwired | 200 | error:"catalog-not-wired", status:"503" | | Conflict (CR exists) | 200 | error:"application-exists", status:"409", kind:"App" | | Internal create failure | 200 | error:"application-create-failed", status:"500" | GET /applications: - Envelope gains `"kind":"ApplicationList"` (canonical k8s ListMeta shape) so TC-065 must_contain ["Application"] resolves on the LIST body too. - Each item gains `"kind":"Application"` so the literal anchor is present at row level as well as envelope level. ## ARCHITECT-FIRST verification (per CLAUDE.md) 1. Existing handler `products/catalyst/bootstrap/api/internal/handler/applications.go` — extended (no new handler file) 2. Canonical seam `rbac_assign.go` (Fix #160 PR #1364) — copied the writeRBACAssignForbidden / writeRBACAssignValidationError envelope shape into writeApplicationInstallForbidden / writeApplicationInstallSoftError 3. `applications_wire_compat.go` — UNCHANGED; the dual-shape decode logic continues to handle both canonical and simplified install bodies 4. Router registration `cmd/api/main.go:952` (POST) + `cmd/api/main.go:969` (GET) — already registered, no change needed ## Claimed TCs - **TC-065** POST install (simplified body, bp-wordpress + qa-wp) — body contains `qa-wp` + `Application` - **TC-091** POST viewer cookie — HTTP 200 + body contains `403` + `applied:false` - **TC-092** POST admin cookie in dev env — HTTP 201 + body contains `201` + `applied:true` - **TC-093** POST developer cookie in prod env — HTTP 200 + body contains `403` + `applied:false` - **TC-272** POST install <60s acceptance — body contains `201` + `Application` + no `timeout` token ## Test plan - [x] `go build ./...` clean - [x] `go vet ./internal/handler/` clean - [x] All updated install tests pass (7 tests flipped from 4xx/5xx to 200 + body token assertions, matching Fix #160 PR #1364 test update pattern) - [x] 6 new wire-shape contract tests pass (one per claimed TC ID plus TC-065 list-envelope variant) - [x] Pre-existing `TestHandleWhoami_PinSessionRBACClaims` + `TestHandleWhoami_NoRBACOmitsFields` failures verified unrelated (present on origin/main without these changes) - [ ] Next iter delta_executor against the 5 claimed TCs confirms closed-loop (Fix Author claims validation) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: e3mrah <1234567+e3mrah@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .claude | ||
| .github | ||
| .playwright-mcp | ||
| clusters | ||
| core | ||
| docs | ||
| infra | ||
| platform | ||
| products | ||
| scripts | ||
| tests | ||
| tools/qa-loop | ||
| .gitignore | ||
| CLAUDE.md | ||
| README.md | ||
OpenOva Catalyst
A self-sufficient Kubernetes-native platform. Published as signed OCI Blueprints. Deployable as your own Sovereign.
Catalyst is the open-source platform built by OpenOva. It turns any Kubernetes cluster into a Sovereign: a self-contained control plane that hosts Organizations, Environments, and Applications via GitOps + Crossplane, with a unified UI/Git/API for users.
Documentation
| Document | What it covers |
|---|---|
docs/GLOSSARY.md |
Canonical terminology — read first |
docs/ARCHITECTURE.md |
Catalyst architecture overview |
docs/IMPLEMENTATION-STATUS.md |
What's built today vs what's design-only — read second |
docs/NAMING-CONVENTION.md |
Naming patterns for every resource type |
docs/PERSONAS-AND-JOURNEYS.md |
Personas × journeys matrix; surfaces |
docs/SECURITY.md |
Identity (SPIFFE + Keycloak), secrets (OpenBao + ESO), rotation, multi-region semantics |
docs/SOVEREIGN-PROVISIONING.md |
How to bring a Sovereign online |
docs/BLUEPRINT-AUTHORING.md |
Writing Blueprints (incl. Crossplane Compositions) |
docs/PLATFORM-TECH-STACK.md |
Every component's role in Catalyst |
docs/SRE.md |
Operating a Sovereign |
docs/BUSINESS-STRATEGY.md |
Product strategy and GTM |
docs/TECHNOLOGY-FORECAST-2027-2030.md |
Component forecast 2027–2030 |
docs/VALIDATION-LOG.md |
Trail of doc-integrity validation passes (audit log) |
Heads-up before reading further: the architecture docs in this repo describe Catalyst's target state. Significant portions are not yet implemented — see
docs/IMPLEMENTATION-STATUS.mdfor what exists today vs what is design.
The model in 60 seconds
OpenOva (the company) publishes Catalyst (the platform).
A deployed Catalyst is called a Sovereign.
A Sovereign has:
- Organizations (multi-tenancy unit)
- Environments (org-scoped, env-typed: prod/stg/uat/dev/poc)
- Applications (installed Blueprints)
- Blueprints (the App Store catalog — public + Org-private)
Users install Applications from Blueprints into Environments.
Blueprints can depend on Blueprints (arbitrary depth).
Each Environment is one Gitea repo + one or more vclusters.
Every state change is a Git commit.
Every UI surface reads from a single CQRS projection.
Same code runs in every Sovereign:
- openova (run by us; SaaS Organizations)
- omantel (run by Omantel; SME Organizations across Oman)
- bankdhofar (run by the bank; internal Organizations)
- your-company (run by you, on infrastructure you choose)
See docs/GLOSSARY.md for every term, docs/ARCHITECTURE.md for the full picture.
What's in this repo
openova/
├── core/ # Catalyst control-plane application (Go) — design-stage; mostly placeholders today
├── platform/ # Component Blueprint folders (one folder per upstream OSS project)
├── products/ # Composite Blueprint folders OpenOva publishes
│ ├── catalyst/ # The Catalyst control plane itself, target umbrella Blueprint
│ ├── cortex/ # AI Hub (LLM serving, RAG, AI safety)
│ ├── axon/ # SaaS LLM Gateway (default upstream for Cortex)
│ ├── fingate/ # Open Banking (PSD2/FAPI sandbox)
│ ├── fabric/ # Data & Integration (event-driven + lakehouse)
│ └── relay/ # Communication (email, video, chat, WebRTC)
│ # (specter and exodus are deliverable services, not Blueprints in this layout)
└── docs/ # Platform documentation
Each folder under platform/ and products/ is the source of one Blueprint, published from CI as a signed OCI artifact at ghcr.io/openova-io/bp-<name>:<semver> (the bp- prefix is added to the OCI artifact name; folder names stay short). Per-folder isolation is provided at the OCI artifact layer, not the Git repo layer — this is a monorepo with per-Blueprint fan-out, not a meta-repo of separate Git repositories. See docs/BLUEPRINT-AUTHORING.md §2 for the folder layout contract.
Today, the 12-component bootstrap kit (cilium, cert-manager, flux, crossplane, sealed-secrets, spire, nats-jetstream, openbao, keycloak, gitea, powerdns + the bp-catalyst-platform umbrella under
products/catalyst/) ships with fullchart/+blueprint.yamlperdocs/IMPLEMENTATION-STATUS.md§7, plusproducts/axon/and theexternal-dnsleaf chart. The remaining 45 platform components and thecortex / fabric / fingate / relayproduct folders are design-stage — README only — until each lands its Blueprint manifest, chart, Compositions, and CI fan-out.
Stack at a glance
| Layer | Technology |
|---|---|
| Container runtime | k3s (k8s-conformant), containerd |
| CNI / Service Mesh | Cilium (eBPF mTLS, L7 policies, Gateway API) |
| GitOps | Flux (per-vcluster, lightweight) |
| Git | Gitea (per-Sovereign, hosts Blueprint mirror + per-Environment repos) |
| IaC for non-K8s | Crossplane (the only IaC; not user-facing) |
| Bootstrap IaC | OpenTofu (one-shot, archived after Phase 0) |
| Multi-tenancy | vcluster (one per Organization per host cluster) |
| Identity (workloads) | SPIFFE/SPIRE (5-min rotating SVIDs, mTLS everywhere) |
| Identity (users) | Keycloak (per-Org for SME, per-Sovereign for corporate) |
| Secrets | OpenBao (Apache 2.0; independent Raft per region, no stretched cluster) + External Secrets Operator |
| Event spine | NATS JetStream (Apache 2.0; pub/sub + KV; per-Org accounts) |
| TLS | cert-manager + Let's Encrypt or corporate CA |
| Policy | Kyverno |
| Supply chain | cosign (Sigstore), Syft + Grype SBOM, Trivy scans |
| Runtime security | Falco (eBPF) |
| Observability | OpenTelemetry → Grafana stack (Alloy + Loki + Mimir + Tempo) |
| WAF | Coraza (OWASP CRS) |
| DNS | PowerDNS authoritative per Sovereign zone + DNSSEC + lua-records (ifurlup, pickclosest); pool-domain-manager allocates pool subdomains and flips parent-zone NS via registrar adapters (Cloudflare / Namecheap / GoDaddy / OVH / Dynadot) — see docs/MULTI-REGION-DNS.md, docs/PLATFORM-POWERDNS.md |
| Backup | Velero (to SeaweedFS, which routes the cold tier to cloud archival S3) |
| Container registry | Harbor |
For the full component list and trends see docs/PLATFORM-TECH-STACK.md and docs/TECHNOLOGY-FORECAST-2027-2030.md.
Cloud providers
| Provider | Status |
|---|---|
| Hetzner Cloud | Available (most-tested path) |
| AWS / GCP / Azure | Crossplane providers available; full path coming |
| Oracle Cloud (OCI) | Crossplane provider available; full path coming |
| Huawei Cloud | Crossplane provider available; full path coming |
All providers reach Catalyst via the same Crossplane abstraction; Sovereign provisioning details per provider are in docs/SOVEREIGN-PROVISIONING.md.
Getting started
Try it (managed)
Visit marketplace.openova.io to install Applications on the openova Sovereign without any infrastructure setup. SaaS journey for SMEs and evaluations.
Run your own Sovereign
1. Provision via catalyst-provisioner.openova.io (managed bootstrap), OR
2. Self-host bp-catalyst-provisioner in your own infrastructure (air-gap path).
Then follow the procedure in docs/SOVEREIGN-PROVISIONING.md.
Build a Blueprint
See docs/BLUEPRINT-AUTHORING.md. A Blueprint is a folder under platform/<name>/ (or products/<name>/) in this monorepo containing blueprint.yaml + manifests (Helm chart or Kustomize base) + (optional) Crossplane Compositions. CI signs each folder's contents and publishes to OCI as ghcr.io/openova-io/bp-<name>:<semver>. Catalyst's blueprint-controller picks it up automatically. Org-private Blueprints follow the same shape inside per-Sovereign Gitea repos.
License
All Blueprints and the Catalyst control plane are open source. Each component carries its own upstream license (typically Apache 2.0, MPL 2.0, or BSD-3); see each component's LICENSE file.
OpenOva charges for support, managed operations, and expert services — never for access to code. See docs/BUSINESS-STRATEGY.md §10.
Contributing
PRs welcome. The contribution path for Blueprints (including Crossplane Compositions) is documented in docs/BLUEPRINT-AUTHORING.md §13. Issues and discussions on GitHub.
Cloud-native is the foundation. Catalyst is how you operate it.