- Root skaffold.yaml composes all services; local profile auto-activates on k3d-homelab context (push: false, k3d image import); ci profile pushes to registry with git-commit tags - Per-service skaffold.yaml for per-service dev (run from service dir) - Add finance-api skaffold.yaml (was missing) - Deployment images use bare name (homelab/<svc>) — Skaffold substitutes the correct tagged image; no registry prefix needed for local dev - Add namespace: auth to all auth service manifests - Remove skaffold.yaml from .gitignore Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
723 B
YAML
33 lines
723 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
namespace: auth
|
|
name: gateway
|
|
spec:
|
|
ingressClassName: traefik
|
|
rules:
|
|
- host: auth.homelab.local
|
|
http:
|
|
paths:
|
|
- path: /api/
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: gateway
|
|
port:
|
|
name: http
|
|
- path: /verify
|
|
pathType: Exact
|
|
backend:
|
|
service:
|
|
name: gateway
|
|
port:
|
|
name: http
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: gateway
|
|
port:
|
|
name: http
|