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:
-
pnpm install cd src-tauri && cargo fetch
-
Run Development Server:
pnpm tauri dev
pnpm 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.yml: Triggered on tag pushes (v*). Builds signed binaries for all platforms and creates a GitHub release.pages.yml: Deploys the landing page and update manifest to GitHub Pages.
The Tauri updater requires signed binaries. To set this up:
-
Generate signing keys:
pnpm 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)
-
Update the version in
src-tauri/Cargo.tomlandsrc-tauri/tauri.conf.json -
Commit the changes
-
Create and push a tag:
git tag v1.0.0 git push origin v1.0.0
The release workflow will automatically build all platforms and publish to GitHub Releases and Pages.
Frontend (Svelte/TS)
# Run Unit Tests
pnpm test:unit
# Run Unit Tests with Coverage
pnpm test:coverage
# Run Playwright E2E Tests
pnpm 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
