Releases: Kadajett/PodScope
podscope-0.2.3
Lightweight Kubernetes monitoring dashboard with Prometheus integration
podscope-0.2.2
Lightweight Kubernetes monitoring dashboard with Prometheus integration
podscope-0.2.1
Lightweight Kubernetes monitoring dashboard with Prometheus integration
podscope-0.2.0
Lightweight Kubernetes monitoring dashboard with Prometheus integration
podscope-0.1.9
Lightweight Kubernetes monitoring dashboard with Prometheus integration
podscope-0.1.8
Lightweight Kubernetes monitoring dashboard with Prometheus integration
v0.1.7
Full Changelog: v0.1.6...v0.1.7
v0.1.6
Full Changelog: v0.1.5...v0.1.6
Updated Release Notes for v0.1.6
Release v0.1.6
Bug Fixes
Fixed Docker build cache issue
The v0.1.5 Docker image was using stale cached build layers that didn't include the Next.js standalone output. This caused pods to crash
with Cannot find module '/app/server.js'.
Changes
- Added cache busting based on package-lock.json and next.config.ts file hashes
- Added build verification step that fails if server.js is not generated
- Docker build will now fail fast if standalone output is missing
Installation
helm install podscope oci://ghcr.io/kadajett/charts/podscope
--version 0.1.6
--namespace podscope
--create-namespace
--set config.prometheusUrl="http://prometheus.monitoring.svc.cluster.local:9090"
Upgrading
helm upgrade podscope oci://ghcr.io/kadajett/charts/podscope
--version 0.1.6
--namespace podscope
--reuse-values
v0.1.5
Full Changelog: v0.1.4...v0.1.5
Release v0.1.5
What's New
Production-Ready Docker Image
This release fixes the Docker image to properly support standalone deployment. The image now correctly builds with Next.js standalone
output mode, generating the server.js file required for self-hosted Kubernetes deployments.
Changes
Docker & Build
- Docker image now properly builds with Next.js output: "standalone" configuration
- Container correctly runs node server.js for production deployment
- Fixed CrashLoopBackOff issues when deploying via Helm
Documentation
- Added Quick Start section with complete Helm install command including namespace creation
- Added Helm Chart Location reference (OCI registry, version, Docker image)
- Added Environment Variables Reference table mapping Helm values to environment variables
- Added All Helm Values reference table with defaults
- Added Verify Installation troubleshooting section
- Added CrashLoopBackOff troubleshooting guidance
- All kubectl/helm commands now include proper namespace flags
Installation
helm install podscope oci://ghcr.io/kadajett/charts/podscope
--version 0.1.5
--namespace podscope
--create-namespace
--set config.prometheusUrl="http://prometheus.monitoring.svc.cluster.local:9090"
Upgrading from Previous Versions
helm upgrade podscope oci://ghcr.io/kadajett/charts/podscope
--version 0.1.5
--namespace podscope
--reuse-values
Required Configuration
| Helm Value | Description |
|---|---|
| config.prometheusUrl | Prometheus/VictoriaMetrics URL (required) |
Full Changelog