46 lines
748 B
YAML
46 lines
748 B
YAML
deploymentMode: SingleBinary
|
|
|
|
loki:
|
|
auth_enabled: false
|
|
server:
|
|
http_listen_port: 3100
|
|
commonConfig:
|
|
replication_factor: 1
|
|
storage:
|
|
type: 'filesystem'
|
|
schemaConfig:
|
|
configs:
|
|
- from: "2024-01-01"
|
|
store: tsdb
|
|
index:
|
|
prefix: loki_index_
|
|
period: 24h
|
|
object_store: filesystem # we're storing on filesystem so there's no real persistence here.
|
|
schema: v13
|
|
limits_config:
|
|
allow_structured_metadata: true
|
|
|
|
gateway:
|
|
ingress:
|
|
enabled: true
|
|
ingressClassName: nginx
|
|
hosts:
|
|
- host: ""
|
|
paths:
|
|
- path: /loki
|
|
pathType: Prefix
|
|
tls:
|
|
|
|
|
|
|
|
singleBinary:
|
|
replicas: 1
|
|
|
|
read:
|
|
replicas: 0
|
|
|
|
backend:
|
|
replicas: 0
|
|
|
|
write:
|
|
replicas: 0 |