Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 41 additions & 38 deletions apps/logs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,61 +13,64 @@ spec:
targetRevision: 6.6.0
helm:
values: |
deploymentMode: Monolithic
minio:
enabled: false
chunksCache:
enabled: false
resultsCache:
enabled: false

loki:
auth_enabled: false
commonConfig:
replication_factor: 1
storage:
type: filesystem
bucketNames:
chunks: chunks
chunks-cache: chunks-cache
results-cache: results-cache

schemaConfig:
configs:
- from: "2024-04-01"
- from: "2024-01-01"
store: tsdb
object_store: s3
object_store: filesystem
schema: v13
index:
prefix: loki_index_
prefix: index_
period: 24h
pattern_ingester:
enabled: true

pattern_ingester: { enabled: true }
limits_config:
allow_structured_metadata: true
volume_enabled: true
ruler:
enable_api: true

ignoreMinioDeprecation: true
minio:
enabled: true

deploymentMode: Monolithic
storage_config:
aws: null

singleBinary:
replicas: 1
backend:
replicas: 0
read:
replicas: 0
write:
replicas: 0
persistence:
enabled: true
storageClass: "local-path"
size: 20Gi
backend: { replicas: 0 }
read: { replicas: 0 }
write: { replicas: 0 }
ingester: { replicas: 0 }
querier: { replicas: 0 }
queryFrontend: { replicas: 0 }
queryScheduler: { replicas: 0 }
distributor: { replicas: 0 }
compactor: { replicas: 0 }
indexGateway: { replicas: 0 }
bloomPlanner: { replicas: 0 }
bloomBuilder: { replicas: 0 }
bloomGateway: { replicas: 0 }

ingester:
replicas: 0
querier:
replicas: 0
queryFrontend:
replicas: 0
queryScheduler:
replicas: 0
distributor:
replicas: 0
compactor:
replicas: 0
indexGateway:
replicas: 0
bloomPlanner:
replicas: 0
bloomBuilder:
replicas: 0
bloomGateway:
replicas: 0
destination:
server: https://kubernetes.default.svc
namespace: monitoring
Expand All @@ -93,7 +96,7 @@ spec:
values: |
config:
clients:
- url: http://grafana-loki.monitoring.svc.cluster.local:3100/loki/api/v1/push
- url: http://grafana-loki-gateway.monitoring.svc.cluster.local/loki/api/v1/push
destination:
server: https://kubernetes.default.svc
namespace: monitoring
Expand Down
Loading