| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| kubeview-darwin-amd64 | 2026-02-22 | 71.6 MB | |
| kubeview-linux-amd64 | 2026-02-22 | 69.8 MB | |
| kubeview-linux-arm64 | 2026-02-22 | 66.1 MB | |
| kubeview-windows-arm64.exe | 2026-02-22 | 65.5 MB | |
| kubeview-darwin-arm64 | 2026-02-22 | 68.4 MB | |
| kubeview-windows-amd64.exe | 2026-02-22 | 69.9 MB | |
| README.md | 2026-02-22 | 2.2 kB | |
| v2.2.0 - Big update for 2026 source code.tar.gz | 2026-02-22 | 1.9 MB | |
| v2.2.0 - Big update for 2026 source code.zip | 2026-02-22 | 2.0 MB | |
| Totals: 9 Items | 415.2 MB | 1 | |
A major overhaul release. KubeView is now distributed as a single self-contained binary with the frontend embedded using Go's //go:embed. Pre-built binaries are available for Linux, macOS, and Windows across multiple architectures — no Docker or separate frontend files required.
Highlights
- Single binary distribution — The frontend is now embedded into the Go binary at build time. Download one file and run it, no Docker needed.
- Cross-platform builds — Pre-built binaries for Linux (amd64/arm64), macOS (amd64/arm64), and Windows (amd64).
- Install script — One-line install via
curlto download the correct binary for your platform. - Go 1.26 upgrade — Updated to the latest Go version with refreshed dependencies.
- Unit & integration tests — Comprehensive test suite added for the Kubernetes service layer.
New Features
- [NEW] Link Pods to ConfigMaps and Secrets through environment variable references in the graph visualization. [#147]
- [NEW] Add informer watchers for ConfigMaps and Secrets, enabling real-time updates for these resource types. [#145]
- [NEW] Option to hide empty ReplicaSets from the graph view, reducing clutter. [#153]
- [NEW] GitHub Actions CI workflow for automated binary builds and releases. [#155] [#156]
Bug Fixes & Improvements
- [FIX] Fix typo in environment variable name from
KUBE_CONFIGtoKUBECONFIG. [#151] - [FIX] Fix dependency error with
sigs.k8s.io/structured-merge-diff. - [IMPROVEMENT] Helm chart cleanup: remove empty lines and quote boolean values. [#148]
- [IMPROVEMENT] Updated Go dependencies.
- [IMPROVEMENT] Dockerfile improvements for cross-compilation clarity.
Download binary
:::bash
curl -sL https://raw.githubusercontent.com/benc-uk/kubeview/2.2.0/scripts/install.sh | sh
Quick run
docker run --rm -it --volume "$HOME/.kube:/root/.kube" \
-p 8000:8000 ghcr.io/benc-uk/kubeview:2.2.0
Helm install
:::bash
helm repo add kubeview https://code.benco.io/kubeview/deploy/helm
helm repo update
helm install kubeview kubeview/kubeview
Full Changelog: https://github.com/benc-uk/kubeview/compare/2.1.1...2.2.0