Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing ingester_client Configuration Options in Helm Chart v6.23.0 #15464

Open
kanzalqalandri opened this issue Dec 17, 2024 · 1 comment
Open

Comments

@kanzalqalandri
Copy link

Helm Chart Version: 6.23.0

I want to change some settings of ingester_client, but it seems like there are no options to adjust its configuration. I suspect this option might be missing from the chart. If it’s available, could anyone please point me in the right direction for modifying the ingester_client settings?

Thanks

@titaneric
Copy link
Contributor

titaneric commented Dec 29, 2024

Hi, I also want the same setting, and ingester_client do not exist in the lastest chart.
There is a workaround to add ingesterClient to the loki config template in values.yaml:

config: |
   ...
    {{- with .Values.loki.ingester }}
    ingester:
      {{- tpl (. | toYaml) $ | nindent 4 }}
    {{- end }}
 
    {{- with .Values.loki.ingesterClient }}
    ingester_client:
      {{- tpl (. | toYaml) $ | nindent 4 }}
    {{- end }}

Define .Values.loki.ingesterClient in your overwrite values.yaml

loki:
  ingesterClient:
    grpc_client_config:
      grpc_compression: snappy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants