// the find
stefanprodan/timoni
Timoni is a package manager for Kubernetes, powered by CUE and inspired by Helm.
Timoni is a Helm replacement that uses CUE instead of Go templates for authoring Kubernetes package configurations. Modules are distributed as OCI artifacts and can be cryptographically signed. It targets platform engineers who are tired of debugging Helm's template/YAML mashups and want actual type safety in their configs.
CUE gives you real schema validation — if your values don't match the module's type constraints, you get an error before anything touches the cluster, not a cryptic runtime failure. Distributing modules as OCI artifacts alongside container images is a clean model: one registry, versioned and signed. The Bundle concept handles the umbrella-chart use case without the awkward Helm parent/child chart dance. The author (stefanprodan) also maintains Flux and Flagger, so the GitOps integration story is well thought through.
CUE has a steep learning curve and a small ecosystem — most engineers who pick this up will spend their first week just understanding how CUE's constraint/value unification model works before writing a single Kubernetes template. The README itself says it's still in infancy with no backwards compatibility guarantees, which makes adopting it for production infrastructure a real commitment. Under 2k stars and 82 forks after what appears to be several years of development suggests the Kubernetes community hasn't embraced it, likely because Helm's template ugliness is a known evil while CUE is an unknown one. There's no migration path from existing Helm charts — you're rewriting from scratch.