Helm chart: add parameter for extra memberlist config (#9078)

pull/9393/head^2
Sean Morton 2 years ago committed by GitHub
parent 11f5218ebf
commit 40782b2759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      docs/sources/installation/helm/reference.md
  2. 5
      production/helm/loki/values.yaml

@ -1698,6 +1698,15 @@ true
<td><pre lang="json">
""
</pre>
</td>
</tr>
<tr>
<td>loki.extraMemberlistConfig</td>
<td>object</td>
<td></td>
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>

@ -88,6 +88,9 @@ loki:
{{- end}}
memberlist:
{{- if .Values.loki.extraMemberlistConfig}}
{{- toYaml .Values.loki.extraMemberlistConfig | nindent 2}}
{{- end }}
join_members:
- {{ include "loki.memberlist" . }}
{{- with .Values.migrate.fromDistributed }}
@ -206,6 +209,8 @@ loki:
{{- end }}
# Should authentication be enabled
auth_enabled: true
# Extra memberlist configuration
extraMemberlistConfig: {}
# -- Tenants list to be created on nginx htpasswd file, with name and password keys
tenants: []
# -- Check https://grafana.com/docs/loki/latest/configuration/#server for more info on the server configuration.

Loading…
Cancel
Save