Skip to content

[Loki Distributed Helm Chart] Values Deployment #19694

@josephpcox

Description

@josephpcox

Describe the bug
Execution error at (loki/templates/ruler/statefulset-ruler.yaml:25:12): Please define loki.storage.bucketNames.chunks

To Reproduce
Steps to reproduce the behavior:
Using this helm chart from the grafana documentation https://grafana.com/docs/loki/latest/setup/install/helm/install-microservices/

  crds:
    enabled: false
  commonConfig:
    replication_factor: 1
  schemaConfig:
    configs:
    - from: "2024-04-01"
      store: tsdb
      object_store: s3
      schema: v13
      index:
        prefix: loki_index_
        period: 24h
  ingester:
    chunk_encoding: snappy
  querier:
    # Default is 4, if you have enough memory and CPU you can increase, reduce if OOMing
    max_concurrent: 4
  pattern_ingester:
    enabled: true
  limits_config:
    allow_structured_metadata: true
    volume_enabled: true

deploymentMode: Distributed

ingester:
  replicas: 3 # To ensure data durability with replication
  zoneAwareReplication:
    enabled: false
querier:
  replicas: 3 # Improve query performance via parallelism
  maxUnavailable: 2
queryFrontend:
  replicas: 2
  maxUnavailable: 1
queryScheduler:
  replicas: 2
distributor:
  replicas: 3
  maxUnavailable: 2
compactor:
  replicas: 1
indexGateway:
  replicas: 2
  maxUnavailable: 1

bloomPlanner:
  replicas: 0
bloomBuilder:
  replicas: 0
bloomGateway:
  replicas: 0

backend:
  replicas: 0
read:
  replicas: 0
write:
  replicas: 0

singleBinary:
  replicas: 0

# This exposes the Loki gateway so it can be written to and queried externaly
gateway:
  service:
    type: LoadBalancer

# Enable minio for storage
minio:
  enabled: true

Expected behavior
I expect my helm deployment of loki with replicases to work without fail sense I am using the values yaml defined in the official documentation. I had this working and deploying locally on docker desktop k8s for over a month
Environment:

  • Infrastructure: Laptop, Docker Desktop Kubernetes
  • Deployment tool: Helm with Tilt

Screenshots, Promtail config, or terminal output
If applicable, add any output to help explain your problem.

Image

I have the repo and helm installed

Image

My Helm version

Image

and my tilt file which just uses the helm chart and points to values yaml

Image

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions