mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 15:04:30 +00:00
Adds dnsmasq address= directives for all active knoe.dev GKE endpoints so LAN clients (morgana, Pi nodes) resolve them without hitting external DNS. Records added: mcp.0.knoe.dev → 8.232.93.14 (knoe-mcp GCE LB) auth.0.knoe.dev → 34.36.71.141 (knoe-auth GCE LB) api.0.knoe.dev → 34.120.221.5 (supabase-kong GCE LB) db.0.knoe.dev → 34.120.221.5 (supabase-kong GCE LB) app.0.knoe.dev → 34.120.221.5 (supabase-kong GCE LB) auth.0.knoe.dev was previously resolving to 34.120.221.5 (wrong — supabase LB) causing the knoe-auth managed cert to be stuck Provisioning for 20 days. Correct IP is 34.36.71.141. Also update auth.0.knoe.dev in external DNS (name.com) to unblock the GCP managed cert. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
402 B
Django/Jinja
12 lines
402 B
Django/Jinja
# knoe.dev GKE service records
|
|
# Injected by Ansible pihole_dns role — do not edit manually.
|
|
#
|
|
# GKE app cluster (knoe-dev-0) LB endpoints:
|
|
# mcp.* → 8.232.93.14 (knoe-mcp GCE LB)
|
|
# auth.* → 34.36.71.141 (knoe-auth GCE LB)
|
|
# api.*, db.* → 34.120.221.5 (supabase-kong GCE LB)
|
|
|
|
{% for record in knoe_dev_dns_records %}
|
|
address=/{{ record.name }}/{{ record.ip }}
|
|
{% endfor %}
|