Files
William Valentin 256b841cbf feat: scaffold agentmon services and k8s deploy
Adds Go microservices (ingest-gateway, event-processor, query-api, web-ui), NATS+Postgres wiring, initial schema/init job, ingress manifests for LAN+tailnet, and a multi-arch image build script.
2026-01-17 01:06:57 -08:00

40 lines
874 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: agentmon-web-ui
namespace: agentmon
annotations:
kubernetes.io/ingress.class: nginx
spec:
rules:
- host: web-ui.agentmon.192.168.153.240.nip.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: web-ui
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: agentmon-ingest-gateway
namespace: agentmon
annotations:
kubernetes.io/ingress.class: nginx
spec:
rules:
- host: ingest-gateway.agentmon.192.168.153.240.nip.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ingest-gateway
port:
number: 80