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

16 lines
519 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Build/push images
- Default builds linux/amd64 + linux/arm64 and pushes.
- Default REGISTRY is `gitea-http.taildb3494.ts.net/will/agentmon` (your Gitea registry).
Examples:
- Push to default image names:
TAG=dev ./build/build-images.sh
- Push to your registry:
REGISTRY=registry.docker-registry.svc.cluster.local:5000 TAG=dev ./build/build-images.sh
- Build locally without pushing (single-arch only; Docker cant `--load` multi-arch):
PLATFORM=linux/amd64 PUSH_ARGS=--load TAG=dev ./build/build-images.sh