## Summary - Rename section index files to match their titles (tutorials.md, reference.md, how-to.md, explanation.md) so all filenames are unique - Convert all ~47 path-based wiki-links to simple filename format across 15 files - Update doc-filenames task to no longer skip index.md files - Update doc-links task to reject path-based links containing '/' This ensures all wiki-links work correctly in obsidian.nvim by making links resolvable by filename alone. ## Testing - `mise run doc-filenames` - all unique - `mise run doc-links` - no broken or path-based links - `mise run doc-titles` - no duplicates Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/109
65 lines
2.3 KiB
Markdown
65 lines
2.3 KiB
Markdown
---
|
|
title: service-routing
|
|
tags:
|
|
- infrastructure
|
|
- network
|
|
---
|
|
|
|
# Service Routing
|
|
|
|
Services are accessible via two DNS domains with different reachability.
|
|
|
|
## DNS Domains
|
|
|
|
| Domain | Proxy | Reachable From |
|
|
|--------|-------|----------------|
|
|
| `*.ops.eblu.me` | Caddy on indri | k8s pods, docker containers, tailnet clients |
|
|
| `*.tail8d86e.ts.net` | Tailscale MagicDNS | Tailnet clients only |
|
|
|
|
**Use `*.ops.eblu.me`** for services that need pod-to-service communication.
|
|
|
|
## Caddy Services (`*.ops.eblu.me`)
|
|
|
|
DNS points to indri's Tailscale IP (100.98.163.89). TLS via Let's Encrypt (ACME DNS-01 with Gandi).
|
|
|
|
| Service | URL | Description |
|
|
|---------|-----|-------------|
|
|
| Homepage | https://go.ops.eblu.me | Service dashboard |
|
|
| [[forgejo]] | https://forge.ops.eblu.me | Git hosting (SSH: 2222) |
|
|
| [[zot]] | https://registry.ops.eblu.me | Container registry |
|
|
| [[grafana]] | https://grafana.ops.eblu.me | Dashboards |
|
|
| [[argocd]] | https://argocd.ops.eblu.me | GitOps CD |
|
|
| [[prometheus]] | https://prometheus.ops.eblu.me | Metrics |
|
|
| [[loki]] | https://loki.ops.eblu.me | Logs |
|
|
| [[miniflux]] | https://feed.ops.eblu.me | RSS reader |
|
|
| [[kiwix]] | https://kiwix.ops.eblu.me | Offline Wikipedia |
|
|
| [[transmission]] | https://torrent.ops.eblu.me | BitTorrent |
|
|
| [[teslamate]] | https://tesla.ops.eblu.me | Tesla logger |
|
|
| [[navidrome]] | https://dj.ops.eblu.me | Music streaming |
|
|
| [[jellyfin]] | https://jellyfin.ops.eblu.me | Media server |
|
|
| [[postgresql]] | pg.ops.eblu.me:5432 | Database |
|
|
| [[sifaka|Sifaka]] | https://nas.ops.eblu.me | NAS dashboard |
|
|
|
|
## Tailscale-Only Services
|
|
|
|
| Service | URL | Description |
|
|
|---------|-----|-------------|
|
|
| Kubernetes | https://k8s.tail8d86e.ts.net | Minikube API |
|
|
|
|
## Port Map (Indri)
|
|
|
|
| Port | Service | Protocol | Binding | Notes |
|
|
|------|---------|----------|---------|-------|
|
|
| 443 | Caddy | HTTPS | 0.0.0.0 | Reverse proxy |
|
|
| 2222 | Caddy L4 | TCP | 0.0.0.0 | SSH proxy to Forgejo |
|
|
| 5432 | Caddy L4 | TCP | 0.0.0.0 | PostgreSQL proxy |
|
|
| 2200 | Forgejo SSH | TCP | localhost | Built-in SSH server |
|
|
| 3001 | Forgejo | HTTP | localhost | Web UI |
|
|
| 5050 | Zot | HTTP | localhost | Registry API |
|
|
| 8096 | Jellyfin | HTTP | localhost | Media server |
|
|
| 44491 | K8s API | HTTPS | 0.0.0.0 | Minikube API server |
|
|
|
|
## Related
|
|
|
|
- [[tailscale]] - ACL configuration
|
|
- [[indri]] - Where services run
|