2026-05-19 22:28:01 +02:00
# ATC Lakehouse
2026-05-19 22:46:40 +02:00
Infrastructure-as-code and documentation for the Dell ATC Lakehouse lab — Forward Deployed Engineering (Bart & Mo).
2026-05-19 22:28:01 +02:00
2026-05-19 22:46:40 +02:00
## Repository layout
2026-05-19 22:28:01 +02:00
```
2026-05-19 22:46:40 +02:00
├── config/ # Application config (homepage, kafka, trino, spark, airflow, superset)
├── compose/ # Docker Compose per stack (source of truth for containers)
├── deploy/ # Combined compose files per host
├── docs/ # Documentation as code
├── inventory/ # Exported container state (reference)
├── rss-proxy/ # RSS feed proxy for homepage widgets
└── scripts/ # Deploy and setup scripts
2026-05-19 22:28:01 +02:00
```
2026-05-19 22:46:40 +02:00
## Hosts (summary)
2026-05-19 22:28:01 +02:00
2026-05-19 22:46:40 +02:00
| Host | Role | Key services |
|------|------|----------------|
| `atc-docker01` | Docker hub | Homepage, Superset, Forgejo (local), LAM, RSS-proxy, icons |
2026-05-19 22:28:01 +02:00
| `atc-mgt01` | Management | Forgejo (Git), LDAP/LAM |
| `atc-kafka01` | Streaming | Kafka, Kafka UI |
| `atc-lake01` | Lakehouse | Spark, Trino, Debezium, Airflow |
| `atc-elastic01` | Search | Elasticsearch, Kibana |
| `atc-db01` / `atc-db02` | Databases | PostgreSQL, MySQL, MongoDB, Cassandra, Neo4j |
| `atc-grafana` | Monitoring | Grafana |
| `pve01` (`10.0.10.65` ) | Hypervisor | Proxmox VE |
2026-05-19 22:46:40 +02:00
See [docs/hosts.md ](docs/hosts.md ) for ports and IPs.
See [docs/ssh-mesh.md ](docs/ssh-mesh.md ) for passwordless SSH between VMs.
2026-05-19 22:28:01 +02:00
2026-05-19 22:46:40 +02:00
## Quick start — atc-docker01
2026-05-19 22:28:01 +02:00
```bash
cd /root/lakehouse
2026-05-19 22:46:40 +02:00
cp .env.example .env # fill in secrets
2026-05-19 22:28:01 +02:00
./scripts/deploy/deploy-atc-docker01.sh
```
2026-05-19 22:46:40 +02:00
## Documentation
2026-05-19 22:28:01 +02:00
2026-05-19 22:46:40 +02:00
- [Architecture ](docs/architecture.md )
- [Hosts & ports ](docs/hosts.md )
- [SSH mesh (passwordless fleet) ](docs/ssh-mesh.md )
2026-05-19 22:28:01 +02:00
- [Disaster recovery ](docs/disaster-recovery.md )
2026-05-19 22:46:40 +02:00
- [Day-to-day operations ](docs/operations.md )
2026-05-19 22:28:01 +02:00
- [Homepage dashboard ](config/homepage/README.md )
## Git remote
Forgejo: `http://atc-mgt01.dell-atc.lan:3001/mo/Lakehouse`
```bash
git clone http://atc-mgt01.dell-atc.lan:3001/mo/Lakehouse.git /root/lakehouse
```
2026-05-19 22:46:40 +02:00
## Secrets
2026-05-19 22:28:01 +02:00
2026-05-19 22:46:40 +02:00
Files with credentials (`proxmox.yaml` , `.env` , kafka connectors) are in git for **lab disaster recovery** . For production, use `.env` + `*.example` and keep secrets off public remotes.