Files
homelab/k8s/core/prom-stack/promtail-values.yaml
Ultradesu 4b30185655
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 12s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 4s
Added promtail
2026-01-07 15:01:15 +00:00

26 lines
590 B
YAML

# Promtail - log collection agent for all cluster pods
config:
clients:
- url: http://loki-gateway.prometheus.svc:80/loki/api/v1/push
# DaemonSet - запускается на каждой ноде
daemonset:
enabled: true
# Tolerations для запуска на master/control-plane нодах
tolerations:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 128Mi