conductor(setup): Add conductor setup files and initial track

This commit is contained in:
2026-02-07 17:49:57 -08:00
parent 29c9c697ee
commit 9b2b09b02a
13 changed files with 542 additions and 0 deletions

18
conductor/tech-stack.md Normal file
View File

@@ -0,0 +1,18 @@
# Technology Stack - JuiceNavidrome
## Core Infrastructure
- **Nomad:** Orchestrates the deployment of the Navidrome service across the cluster nodes.
- **Consul:** Handles service discovery, health monitoring, and the distributed locking required for LiteFS leader election.
- **Docker:** Provides the container runtime environment for Navidrome and LiteFS.
## Storage & Database
- **SQLite:** The primary relational database used by Navidrome for metadata and state.
- **LiteFS:** A FUSE-based filesystem that provides synchronous replication of the SQLite database across the cluster.
## Automation & Delivery
- **Gitea Actions:** Automates the multi-arch (AMD64/ARM64) building and pushing of the custom supervised container image.
- **Git:** Source control for all infrastructure-as-code artifacts.
## Networking
- **Traefik:** Acts as the cluster's ingress controller, routing traffic based on Consul tags.
- **LiteFS Proxy:** Handles transparent write-forwarding to the cluster leader.