The wave-1 cutover moved paperless + teslamate (postgres) and mealie (SQLite) to ringtail, but borgmatic and the Grafana TeslaMate datasource still pointed at the minikube-hosted copies — so the migrated live data was unbacked and the dashboards would break when the minikube DBs are dropped. - Add a Tailscale Service (blumeops-pg-ringtail) + Caddy L4 route pg.ops.eblu.me:5434 for the ringtail blumeops-pg cluster. - Repoint borgmatic teslamate + paperless postgres dumps to :5434 and the mealie SQLite dump to the ringtail kubectl target (ssh:eblume@ringtail). - Repoint the Grafana TeslaMate datasource to pg.ops.eblu.me:5434. Closes the post-cutover backup gap and unblocks the wave-1 decommission. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
760 B
YAML
24 lines
760 B
YAML
# Tailscale LoadBalancer for the ringtail blumeops-pg cluster.
|
|
# Canonical hostname: blumeops-pg-ringtail.tail8d86e.ts.net (distinct from
|
|
# the minikube blumeops-pg, which still owns pg.tail8d86e.ts.net until the
|
|
# wave-1 decommission). Borgmatic on indri and the Grafana TeslaMate
|
|
# datasource reach it via the Caddy L4 route pg.ops.eblu.me:5434.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: blumeops-pg-tailscale
|
|
namespace: databases
|
|
annotations:
|
|
tailscale.com/hostname: "blumeops-pg-ringtail"
|
|
tailscale.com/proxy-class: "default"
|
|
spec:
|
|
type: LoadBalancer
|
|
loadBalancerClass: tailscale
|
|
selector:
|
|
cnpg.io/cluster: blumeops-pg
|
|
role: primary
|
|
ports:
|
|
- name: postgresql
|
|
port: 5432
|
|
targetPort: 5432
|
|
protocol: TCP
|