forked from DevFW-CICD/stacks
45 lines
No EOL
982 B
YAML
45 lines
No EOL
982 B
YAML
# -- Overrides the chart's name
|
|
nameOverride: null
|
|
|
|
# -- Overrides the chart's computed fullname
|
|
fullnameOverride: null
|
|
|
|
global:
|
|
# -- Allow parent charts to override registry hostname
|
|
imageRegistry: ""
|
|
# -- Allow parent charts to override registry credentials
|
|
imagePullSecrets: []
|
|
|
|
daemonset:
|
|
# -- Deploys Promtail as a DaemonSet
|
|
enabled: true
|
|
autoscaling:
|
|
# -- Creates a VerticalPodAutoscaler for the daemonset
|
|
enabled: false
|
|
|
|
deployment:
|
|
# -- Deploys Promtail as a Deployment
|
|
enabled: false
|
|
|
|
config:
|
|
enabled: true
|
|
logLevel: info
|
|
logFormat: logfmt
|
|
serverPort: 3101
|
|
clients:
|
|
- url: http://loki-loki-distributed-gateway/loki/api/v1/push
|
|
scrape_configs:
|
|
- job_name: authlog
|
|
static_configs:
|
|
- targets:
|
|
- authlog
|
|
labels:
|
|
job: authlog
|
|
__path__: /logs/auth.log
|
|
- job_name: syslog
|
|
static_configs:
|
|
- targets:
|
|
- syslog
|
|
labels:
|
|
job: syslog
|
|
__path__: /logs/syslog |