observability: deploy observability stack

This commit is contained in:
2026-07-28 15:46:52 +02:00
parent 3cfef81f89
commit 38ceb887a7
23 changed files with 795 additions and 0 deletions
@@ -0,0 +1,23 @@
# Ingress exposing the Loki push API (loki:3100) through Traefik as
# loki-internal.lan — used by the docker-host promtail to push container logs
# into the central Loki.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: loki-internal
namespace: observability
annotations:
external-dns.alpha.kubernetes.io/enabled: "true"
spec:
ingressClassName: traefik
rules:
- host: loki-internal.lan
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: loki
port:
number: 3100