An ArgoCD extension package. Metrics, logs, backups, network flows, vulnerabilities, and events — all inside ArgoCD.
ArgoPlane is a collection of ArgoCD UI extensions. It adds resource tabs, app views, and status panels so developers can see metrics, logs, backups, network flows, vulnerabilities, and events without leaving ArgoCD. Nothing more, nothing less. Each extension is independent and can be installed on its own.
argoplane.mp4
Each extension is independently toggleable. Install only what you need.
Every extension follows the same pattern: a React/TypeScript UI registers tabs and views via ArgoCD's extension API, a Go backend queries the underlying system (Prometheus, Velero, Loki, etc.), and ArgoCD's proxy extension mechanism routes requests from the UI to the backend. Extensions inherit ArgoCD's authentication and RBAC. No extra auth layer required.
ArgoCD UI
├── ArgoPlane extensions
│ ├── Resource tabs (per Deployment, Pod, etc.)
│ ├── App views (per Application)
│ └── Status panels (app header)
│
│ React/TS ──proxy──▶ Go backends
│ ├── Prometheus
│ ├── Velero
│ ├── Cilium/Hubble
│ ├── Loki
│ ├── Trivy Operator
│ └── K8s Events API
│
└── ArgoCD RBAC + Dex auth
Helm (recommended):
helm install argoplane oci://ghcr.io/natrontech/charts/argoplane --version 0.2.0Each extension can be enabled or disabled individually in values.yaml. The chart deploys extension backends, proxy configuration, RBAC policies, and UI bundles (via an init container on argocd-server).
See the deployment docs for full configuration details.
make dev-infra # Create kind cluster + install ArgoCD (idempotent)
make argocd-password # Print admin password
make argocd-portforward # Port-forward UI to localhost:8080
make build-extensions # Build all UI extension bundles
make reload-extensions # Rebuild + redeploy all extensions
make test-integration # Run integration tests
make clean-all # Destroy everything
make help # Show all available targetsArgoPlane is developed with the help of Claude Code, Anthropic's AI coding assistant. We're transparent about this because we believe AI-assisted development is the future, and hiding it helps nobody.
The entire Claude Code configuration is checked into this repo:
| Path | What it does |
|---|---|
CLAUDE.md |
Project context, architecture overview, and development instructions for Claude |
.claude/rules/ |
Rule files covering Go, React, architecture, design system, git conventions, and more |
.claude/skills/ |
Custom skills: dev setup, extension scaffolding, deployment, testing |
We share this openly so others can learn from our approach to AI-assisted development.
Built with love from Switzerland by Natron Tech AG.












