Added promtail
This commit is contained in:
25
k8s/core/prom-stack/promtail-values.yaml
Normal file
25
k8s/core/prom-stack/promtail-values.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user