diff options
author | makefunstuff <[email protected]> | 2024-06-29 16:18:34 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-06-29 16:18:34 +0200 |
commit | cee007746ba4ea810e6c9aefeb5883040c038507 (patch) | |
tree | 5f2dfedcd3ac089284d8ba4278d477eacd62cfa7 /tools/loki-promtail | |
parent | 4977cb302ada7120468127e4b9c0cd8da3dfaf2b (diff) | |
download | k3s-lab-cee007746ba4ea810e6c9aefeb5883040c038507.tar.gz |
fix
Diffstat (limited to 'tools/loki-promtail')
-rw-r--r-- | tools/loki-promtail/values.yaml | 94 |
1 files changed, 48 insertions, 46 deletions
diff --git a/tools/loki-promtail/values.yaml b/tools/loki-promtail/values.yaml index 3fe97f9..4fafe2f 100644 --- a/tools/loki-promtail/values.yaml +++ b/tools/loki-promtail/values.yaml @@ -1,50 +1,52 @@ +deploymentMode: SingleBinary loki: - deploymentMode: SingleBinary loki: - loki: - auth_enabled: false - analytics: - reporting_enabled: false - server: - log_level: info - commonConfig: - replication_factor: 1 - ingester: - chunk_encoding: snappy - storage: - type: filesystem - schemaConfig: - configs: - - from: "2024-06-29" - store: tsdb - object_store: filesystem - schema: v13 - index: - prefix: loki_index_ - period: 24h - limits_config: - retention_period: 14d - singleBinary: - replicas: 1 - persistence: - enabled: true - size: 50Gi - gateway: - replicas: 0 - backend: - replicas: 0 - read: - replicas: 0 - write: - replicas: 0 - chunksCache: - enabled: false - resultsCache: - enabled: false - lokiCanary: - enabled: false - test: - enabled: false + auth_enabled: false + analytics: + reporting_enabled: false + commonConfig: + replication_factor: 1 + ingester: + chunk_encoding: snappy + storage: + type: filesystem + schemaConfig: + configs: + - from: "2024-06-29" + store: tsdb + object_store: filesystem + schema: v13 + index: + prefix: loki_index_ + period: 24h + limits_config: + retention_period: 14d + mminio: + enabled: true + serviceAccount: + name: "minio-sa-loki" + + singleBinary: + replicas: 1 + persistence: + enabled: true + size: 50Gi + gateway: + replicas: 0 + backend: + replicas: 0 + read: + replicas: 0 + write: + replicas: 0 + chunksCache: + enabled: false + resultsCache: + enabled: false + lokiCanary: + enabled: false + test: + enabled: false promtail: fullnameOverride: promtail config: @@ -56,7 +58,7 @@ promtail: - job_name: system static_configs: - targets: - - localhost + - localhost labels: job: varlogs __path__: /var/log/*log |