Open-source software for multi-platform inventory, dependency review, migration planning, readiness checks, and reports.
Viaduct helps teams inspect multi-platform environments, map dependencies, build migration plans, and keep reviewable records before a pilot. The repository combines a Go backend, REST API, CLI, React dashboard, and standalone public site around the same saved inventory, assessment, planning, and reporting data.
Versioned release notes live in docs/releases/README.md, the current install reference lives in docs/releases/current.md, and the published release stream is tracked in CHANGELOG.md.
Viaduct is built for operators who need:
- multi-platform inventory collection
- review dependencies before planning
- readiness checks and planning steps before cutover work starts
- save plans and export reports
The default first-run experience is the dashboard assessment workflow: start Viaduct, create an assessment, discover, inspect, simulate, save a plan, and export a report. The local lab remains the fastest path from fresh clone to a working dashboard and API.
Many teams do not need more abstract migration talk. They need to know what exists, what depends on what, what should move first, and what review material is good enough to approve a pilot. Viaduct is aimed at that planning and handoff gap.
It is strongest when operators need:
- one normalized inventory across mixed platforms
- dependency context before sequencing migration work
- a saved assessment instead of disconnected notes and screenshots
- a CLI, API, and dashboard that reflect the same state
- Discovery: normalize inventory from VMware, Proxmox, Hyper-V, KVM, Nutanix, and Veeam-related backup systems into the shared model.
- Dependency mapping: build workload, network, storage, and backup graph context before execution.
- Assessment workflow: save source connections, snapshots, graph outputs, target assumptions, readiness results, plans, approvals, notes, and exported reports together.
- Migration planning: use declarative specs, preflight checks, saved dry-run plans, execution windows, approval requirements, checkpoints, resume support, and rollback state.
- Lifecycle analysis: review drift, policy, cost, remediation guidance, and backup portability inputs against the same stored data.
- Diagnostics and observability: validate local runtime readiness with
viaduct doctorandviaduct status --runtime, then optionally prove backend trace flow with the bundled Grafana + Tempo path. - Multi-tenancy and extensibility: use tenant-scoped APIs, service accounts, PostgreSQL-backed state, and the community plugin host.
These are current seeded-product captures from the packaged dashboard. They reflect the keyless local session path and the current assessment dashboard across inventory, graph, migration, and reporting pages.
Detailed validation status, including fixture-backed versus live-lab claims, is maintained in docs/reference/support-matrix.md.
| Platform / Integration | Status | Notes |
|---|---|---|
| VMware vSphere | Implemented | vCenter discovery with VM and infrastructure metadata. |
| Proxmox VE | Implemented | REST-based discovery and a common target in current pilot examples. |
| Microsoft Hyper-V | Implemented | WinRM and PowerShell-backed inventory collection. |
| KVM / libvirt | Implemented | XML-backed fallback works out of the box; live libvirt support is available behind the libvirt build tag. |
| Nutanix AHV | Implemented | Prism Central v3 inventory collection. |
| Veeam Backup & Replication | Implemented | Backup discovery, restore-point correlation, and portability planning support. |
| Community plugins | Implemented | gRPC plugin host with manifest and compatibility checks. |
For local evaluation, the repo root now has the boring path:
docker compose up -d --buildOpen http://127.0.0.1:8080. No tenant key, service-account key, admin key, or copied secret config is required for the local lab. The stack starts PostgreSQL with a trust-only internal Docker connection, runs Viaduct in local-runtime mode, and uses the bundled KVM fixtures so discovery works immediately.
Stop it with:
docker compose downUse docker compose down -v only when you want to delete the local data volume.
Viaduct v3.3.0 uses the signed GHCR OCI image as the main packaged release artifact.
docker pull ghcr.io/eblackrps/viaduct:3.3.0
cosign verify ghcr.io/eblackrps/viaduct:3.3.0 \
--certificate-identity \
'https://github.com/eblackrps/Viaduct/.github/workflows/image.yml@refs/tags/v3.3.0' \
--certificate-oidc-issuer \
'https://token.actions.githubusercontent.com'The primary signed registry is ghcr.io/eblackrps/viaduct. The Docker Hub mirror is docker.io/emb079/viaduct:3.3.0 when repository Docker Hub secrets are configured. Detailed container guidance lives in docs/operations/docker.md. The production Compose and Helm samples in deploy/docker-compose.prod.yml and deploy/helm/viaduct use PostgreSQL-backed state with explicit credentials for shared deployments.
The direct binary path is still available for contributors who do not want Docker:
make build
make web-build
./bin/viaduct version
./bin/viaduct startOn a fresh source checkout, viaduct start:
- creates
~/.viaduct/config.yamlautomatically when it is missing - points that config at the shipped
examples/lab/kvmfixtures - serves the built dashboard and API together at http://127.0.0.1:8080
- opens the dashboard automatically on interactive local runs when practical
For the default local lab path, no pasted browser key is required.
Use these companion commands when you need them:
./bin/viaduct status --runtime
./bin/viaduct doctor
./bin/viaduct stopThe same runtime also publishes live API docs at http://127.0.0.1:8080/api/v1/docs, backed by the checked-in contract in docs/reference/openapi.yaml.
viaduct serve-api remains the lower-level API command for container, service, and intentionally headless deployments. It still serves the built dashboard automatically when assets are present in web/dist, a packaged web/ directory, or an installed share/viaduct/web layout. It now binds to 127.0.0.1 by default and refuses unauthenticated non-loopback listeners unless you configure an admin, tenant, or service account credential or pass the explicit dangerous override. If you prefer the Vite development server while changing frontend code, that flow still lives in web/README.md.
If you serve the dashboard from a different browser origin, configure VIADUCT_ALLOWED_ORIGINS on the API so tenant-protected routes can be reached safely. The default same-origin local path on http://127.0.0.1:8080 does not need that override.
Tenant and service account API keys are persisted as non-recoverable hashes. Viaduct only reveals a raw key at tenant creation time or during an explicit service account rotate flow.
Use these entrypoints next:
- Quickstart: QUICKSTART.md
- Detailed quickstart: docs/getting-started/quickstart.md
- Assessment guide: docs/operations/pilot-workspace-flow.md
cmd/viaduct/: CLI entrypoints.internal/: discovery, dependency mapping, migration orchestration, lifecycle analysis, API server, and state store packages.web/: React dashboard for assessment workflows.site/: separate static public site for GitHub Pages.examples/: lab, deployment, and plugin evaluation assets.docs/: deeper reference, operations, and product-scope documentation.
make release-gate is the release check command. It runs backend build, vet, lint, race coverage, certification fixtures, soak coverage, plugin and OpenAPI contract checks, release-surface consistency checks, CLI smoke coverage, dashboard lint/format/unit/build verification, coverage enforcement, and the cross-platform package matrix in one command. CI adds Playwright end-to-end coverage, a Docker-backed observability smoke for Grafana + Tempo trace ingestion, CodeQL, gosec, and trivy on top of the same source-controlled release path.
Other high-signal commands:
make build
make observability-up
make web-e2e-setup
make pilot-smoke
make observability-validate
make certification-test
make soak-test
make contract-check
make release-surface-check
make package-release-matrixmake package-release-matrix produces the secondary native-bundle matrix that release tags attach beneath the primary OCI image publication path: linux/amd64, linux/arm64, darwin/arm64, and windows/amd64 archives plus dist/SHA256SUMS.
- Overview and status: README.md
- Install: INSTALL.md
- Quickstart: QUICKSTART.md
- Upgrade: UPGRADE.md
- Release process: RELEASE.md
- Release notes: docs/releases/README.md
- Support: SUPPORT.md
- Security: SECURITY.md
- Documentation index: docs/README.md
- API contract: docs/reference/openapi.yaml
- Live API docs:
/api/v1/docson any running Viaduct server - Support matrix: docs/reference/support-matrix.md
- Backend observability: docs/operations/observability.md
Contributions are welcome. Keep docs, examples, and public-facing assets aligned with visible behavior. See CONTRIBUTING.md for workflow and verification expectations.
- Usage, evaluation, and troubleshooting: SUPPORT.md
- Security reporting: SECURITY.md
- Project change history: CHANGELOG.md
- Community expectations: CODE_OF_CONDUCT.md
Viaduct is licensed under the Apache License 2.0.





