sigs.k8s.io/cluster-api@v1.7.1/hack/observability/loki/values.yaml (about)

     1  # Placeholder for loki chart configuration, see https://github.com/grafana/helm-charts/tree/main/charts/loki
     2  # This configuration is necessary to deploy Loki in the
     3  # "Single Binary" mode.
     4  loki:
     5    commonConfig:
     6      replication_factor: 1
     7    storage:
     8      type: 'filesystem'
     9    rulerConfig:
    10      storage:
    11        type: local
    12    # Set high ingestion limits so log-push can push logs without hitting the rate limits:
    13    # Push response: status: "429 Too Many Requests", body: "Ingestion rate limit exceeded for user fake (limit:
    14    # 4194304 bytes/sec) while attempting to ingest '1000' lines totaling '755293' bytes, reduce log volume or
    15    # contact your Loki administrator to see if the limit can be increased"
    16    limits_config:
    17      ingestion_rate_mb: 1024
    18      ingestion_burst_size_mb: 1024
    19  
    20  singleBinary:
    21    replicas: 1
    22  
    23  gateway:
    24    enabled: false
    25  
    26  # We are disabling basically everything because we just want
    27  # Loki and no additional monitoring.
    28  monitoring:
    29    dashboards:
    30      # -- If enabled, create configmap with dashboards for monitoring Loki
    31      enabled: false
    32    rules:
    33      # -- If enabled, create PrometheusRule resource with Loki recording rules
    34      enabled: false
    35    alerts:
    36      # -- If enabled, create PrometheusRule resource with Loki alerting rules
    37      enabled: false
    38    serviceMonitor:
    39      # -- If enabled, ServiceMonitor resources for Prometheus Operator are created
    40      enabled: false
    41    selfMonitoring:
    42      enabled: false
    43      grafanaAgent:
    44        installOperator: false
    45    lokiCanary:
    46      enabled: false
    47  
    48  test:
    49    enabled: false