Apps Pack
The Nebari Apps Pack lets users launch, manage, and observe web apps on a Nebari Kubernetes cluster — behind Keycloak SSO, with no Kubernetes knowledge required. Two kinds of app are supported: static sites (HTML/CSS/JS, served by nginx) and Python apps launched by a pixi task.
Everything converges on one declarative resource: the App custom resource
(apps.nebari.dev/v1alpha1). Whether an app is launched from the web UI, the REST API, or
kubectl apply, the apps-operator reconciles the same contract into a Deployment, a
Service, and a NebariApp — and the nebari-operator
turns that into routing, TLS, authentication, and a landing-page tile.
Each app gets its own URL under the cluster’s apps domain:
https://<subdomain>.apps.<cluster-domain>What ships today
Section titled “What ships today”- apps-operator — reconciles
Appresources. Static sites and Python/pixi apps, from inline files, a git repository, or a PVC. - apps-api — REST API for CRUD, status, logs, events, analytics, and direct
zip/.html upload (a zip with a
pixi.tomllaunches as a Python app). - apps-ui — a dashboard built on the Nebari design system: analytics plus a cluster-wide Metrics page, a searchable / sortable apps table with bulk actions, per-app detail pages with live logs, events, usage, restart, and a copyable manifest, and launch / edit forms (drag-and-drop upload, git, or PVC).
- apps-mcp — an MCP server at
/mcpso coding agents launch and manage apps with natural language (Keycloak device-flow auth). new-nebari-appskill — teaches Claude Code to scaffold apps in the expected layout with anebari-app.yamlmanifest, so “generate, then launch it” is one flow.
In this guide
Section titled “In this guide”- Getting started — install the chart on a Nebari cluster and launch your first app
- Launching apps — every way to launch: UI, upload, API, and plain CRs
- MCP server — connect a coding agent and launch apps with natural language
- Scaffolding skill — generate launch-ready apps with Claude Code
- Local development — run the whole stack on your laptop with kind
Reference pages
Section titled “Reference pages”- App CRD reference — complete field-by-field reference for the
Appcustom resource - REST API — the apps-api endpoints
- Architecture & auth — how the pieces fit together and how authentication works
Python apps
Section titled “Python apps”Upload a zip containing a pixi.toml and your Python source, name the pixi task that
starts your server, and the pack runs it — no Dockerfile, no image build. See
Launching apps for the contract (the task must serve on
0.0.0.0:8080).