Kubernetes Orchestration and Resource Explorer - A lightweight, open-source Kubernetes IDE built with Tauri v2 and Svelte 5.
- π Blazing Fast: Built on Rust and Tauri, consuming a fraction of the RAM of Electron-based competitors.
- π¨ Theming System:
- Kore (Default - Kubernetes Blue)
- Kore Light
- Dracula
- Alucard (Light Dracula)
- Rusty & Rusty Light (Legacy)
- βΈοΈ Multi-Cluster Management:
- Import kubeconfigs from files or folders with automatic context extraction.
- Each cluster stored independently with UUID-based routing.
- SQLite database for cluster metadata (name, icon, description, tags).
- Bookmark favorite clusters in the icon sidebar for quick access.
- Drag-and-drop to reorder bookmarks.
- β‘ Real-time Updates: Kubernetes resources update in real-time using efficient watch streams.
- π Advanced Data Tables:
- Sorting, Filtering, and Column Reordering.
- Multi-selection and Batch Actions (e.g., Bulk Delete).
- Persistent user preferences for column visibility.
- π οΈ Workload Management: View, Edit, Log, Shell, and Delete Pods (more resources coming soon).
- Frontend Framework: Svelte 5 (Runes)
- Desktop Framework: Tauri v2
- Styling: Tailwind CSS v4
- Kubernetes Client:
kube-rs&k8s-openapi - Icons:
lucide-svelte
βββ src/ # Svelte Frontend
β βββ lib/
β β βββ components/
β β β βββ ui/ # Reusable UI components
β β β βββ IconSidebar.svelte # Left-most navigation
β β β βββ ResourceSidebar.svelte # Cluster resource navigation
β β β βββ ClusterImportModal.svelte
β β βββ stores/
β β βββ clusters.svelte.ts # Cluster CRUD operations
β β βββ activeCluster.svelte.ts # Current cluster state
β β βββ bookmarks.svelte.ts # Sidebar bookmarks
β β βββ settings.svelte.ts # App settings
β βββ routes/
β β βββ +page.svelte # Cluster overview
β β βββ cluster/[id]/ # Cluster-scoped routes
β β β βββ pods/
β β β βββ deployments/
β β β βββ settings/ # Cluster settings
β β β βββ ...
β β βββ settings/ # App settings
β βββ ...
βββ src-tauri/ # Rust Backend
β βββ src/
β β βββ cluster_manager.rs # SQLite cluster storage
β β βββ import.rs # Kubeconfig import & extraction
β β βββ k8s.rs # Kubernetes API & Watchers
β β βββ ...
β βββ ...
-
Install dependencies:
-
bun install cd src-tauri && cargo fetch
-
Run Development Server:
bun run tauri dev
bun run tauri buildKore uses GitHub Actions for automated testing and releases.
test.yml: Runs on PRs and pushes tomain. Performs linting, type checking, and tests on all platforms.release-please.yml: Runs on every push tomain. Maintains a release PR from Conventional Commits; merging it creates the GitHub release, builds signed installers for every platform, publishes the release, and updates the auto-updater manifest on GitHub Pages.deploy-docs.yml/screenshots.yml: Build the docs site and app screenshots for GitHub Pages.security.yml: Dependency and lint security scans.
The in-app updater checks https://devtheops.github.io/kore/update.json (falling back to the latest.json asset on the latest GitHub Release) and verifies downloads against the public key below. To set up signing for a fork:
-
Generate signing keys:
bun run tauri signer generate -w ~/.tauri/kore.keyThis creates a private key (
kore.key) and outputs the public key. -
Update the public key in
src-tauri/tauri.conf.json:"plugins": { "updater": { "pubkey": "YOUR_PUBLIC_KEY_HERE", ... } }
-
Add GitHub secrets (Settings β Secrets β Actions):
TAURI_SIGNING_PRIVATE_KEY: Contents of~/.tauri/kore.keyTAURI_SIGNING_PRIVATE_KEY_PASSWORD: Your key password (if set)
-
Set up the
gh-pagesbranch (orphan branch for the website):# Create orphan branch git checkout --orphan gh-pages git rm -rf . # Add your landing page (index.html, etc.) echo '<!DOCTYPE html><html>...</html>' > index.html git add index.html git commit -m "Initial gh-pages" git push origin gh-pages # Return to main git checkout main
Working on the site with a worktree:
git worktree add ../kore-pages gh-pages cd ../kore-pages # Edit site files, commit, push
-
Enable GitHub Pages (Settings β Pages):
- Source: Deploy from a branch
- Branch:
gh-pages// (root)
Releases are fully automated with release-please:
- Land changes on
mainusing Conventional Commit messages (feat:β minor bump,fix:β patch bump;feat!:/BREAKING CHANGE:β minor while pre-1.0). - release-please opens (or updates) a "chore(main): release x.y.z" PR that bumps
package.json,src-tauri/tauri.conf.json,src-tauri/Cargo.toml,docs/package.json,src-tauri/Cargo.lock, andCHANGELOG.md. - Merge that PR. The workflow creates the
vX.Y.Zrelease, builds and signs installers for all platforms, attaches them, and publishes the updater manifest (latest.jsonfrom tauri-action) togh-pagesasupdate.json.
If a build fails or a release had to be created by hand, re-run the Release Please workflow via Run workflow with tag set to the release tag (e.g. v0.4.0) to rebuild and re-attach the assets.
Never bump versions or edit CHANGELOG.md by hand.
Frontend (Svelte/TS)
# Run Unit Tests
bun run test:unit
# Run Unit Tests with Coverage
bun run test:coverage
# Run Playwright E2E Tests
bun run testBackend (Rust)
# Run Unit Tests
cd src-tauri
cargo test
# Run Coverage (requires cargo-llvm-cov)
# Install: cargo install cargo-llvm-cov
cargo llvm-covSee tests/README.md for more details.
Kore stores its configuration in:
- macOS/Linux:
~/.kore/ - Windows:
C:\Users\<User>\.kore\
Storage structure:
~/.kore/
βββ clusters.db # SQLite database (cluster metadata)
βββ kubeconfigs/ # Extracted single-context configs
β βββ <uuid-1>.yaml
β βββ <uuid-2>.yaml
β βββ ...
βββ bookmarks.json # Sidebar bookmarks
If you used a pre-rebrand build that stored data in ~/.rustylens, Kore migrates that directory to ~/.kore (and rewrites the stored kubeconfig paths) automatically on first launch.
The Nodes page and the Deployment / StatefulSet detail panels show live CPU and memory usage when metrics-server is installed in the cluster. Without it, Kore shows a notice and everything else keeps working.
