Introduction
Introduction
kurel is an OAM-native package manager for Kubernetes. You describe an
application with an OAM-style document (app.yaml) — a set of typed components
(webservice, worker, cronjob, postgresql, …) decorated with traits (ingress,
certificate, scaler, external-secret, …) — and kurel build resolves it into
static, GitOps-ready Kubernetes manifests.
The two-config-set model
kurel separates what an application needs from how a cluster provides it:
- Package config — the application author’s
app.yaml(and an optionalkurel.yamlparameter schema for distributable, parameterized packages). - Site config — a platform
ClusterProfilethat supplies cluster-specific choices (which ingress/gateway controller, which cert-manager issuer, which secret store, …).
At build time the two are resolved together, so the same package renders correctly on different clusters without edits.
Where to go next
- Install kurel.
- Follow the Quickstart to build your first app.
- Browse runnable Examples.
- Read the Concepts for the design and OAM model, and the API reference for packages and the CLI.