Skip to content

Commit 0fc4567

Browse files
authored
feat: Add pattern ingester support in SSD mode (grafana#12685)
1 parent 7a9fd70 commit 0fc4567

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

production/helm/loki/CHANGELOG.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Entries should include a reference to the pull request that introduced the chang
1313

1414
[//]: # (<AUTOMATED_UPDATES_LOCATOR> : do not remove this line. This locator is used by the CI pipeline to automatically create a changelog entry for each new Loki release. Add other chart versions and respective changelog entries bellow this line.)
1515

16+
## 6.2.2
17+
18+
- [FEATURE] Add support for enabling pattern ingester config via `loki.pattern_ingester.enabled`.
19+
1620
## 6.2.1
1721

1822
- [BUGFIX] Removed duplicate bucketNames from documentation and fixed key name `deploymentMode`
@@ -44,7 +48,6 @@ Entries should include a reference to the pull request that introduced the chang
4448

4549
- [CHANGE] Changed version of Loki to 2.9.6
4650

47-
4851
## 5.46.0
4952

5053
- [CHANGE] Changed version of Loki to 2.9.5
@@ -202,7 +205,6 @@ Entries should include a reference to the pull request that introduced the chang
202205

203206
- [CHANGE] Changed version of Grafana Enterprise Logs to v1.8.4
204207

205-
206208
## 5.32.0
207209

208210
- [CHANGE] Grafana dashboards are no longer created solely in scalable mode and with external cloud storage enabled.
@@ -454,12 +456,10 @@ Entries should include a reference to the pull request that introduced the chang
454456

455457
- [CHANGE] Changed version of Grafana Enterprise Logs to v1.7.2
456458

457-
458459
## 5.4.0
459460

460461
- [CHANGE] Changed version of Loki to 2.8.2
461462

462-
463463
- [CHANGE] Change default GEL and Loki versions to 1.7.1 and 2.8.1 respectively
464464
- [BUGFIX] Fix dns port in network-policy
465465

@@ -469,12 +469,10 @@ Entries should include a reference to the pull request that introduced the chang
469469

470470
- [BUGFIX] Add projected volume type to psp
471471

472-
473472
## 4.9.0
474473

475474
- [CHANGE] Changed version of Loki to 2.7.5
476475

477-
478476
- [BUGFIX] Fix role/PSP mapping
479477

480478
- [BUGFIX] Fix service/ingress mapping

production/helm/loki/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: loki
33
description: Helm chart for Grafana Loki in simple, scalable mode
44
type: application
55
appVersion: 3.0.0
6-
version: 6.2.1
6+
version: 6.2.2
77
home: https://grafana.github.io/helm-charts
88
sources:
99
- https://github.com/grafana/loki

production/helm/loki/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# loki
22

3-
![Version: 6.2.1](https://img.shields.io/badge/Version-6.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
3+
![Version: 6.2.2](https://img.shields.io/badge/Version-6.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
44

55
Helm chart for Grafana Loki in simple, scalable mode
66

production/helm/loki/values.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ loki:
122122
# The value will be passed through tpl.
123123
generatedConfigObjectName: '{{ include "loki.name" . }}'
124124

125-
126125
# -- Config file contents for Loki
127126
# @default -- See values.yaml
128127
config: |
@@ -137,6 +136,9 @@ loki:
137136
{{- toYaml . | nindent 2}}
138137
{{- end}}
139138
139+
pattern_ingester:
140+
enabled: {{ .Values.loki.pattern_ingester.enabled }}
141+
140142
memberlist:
141143
{{- if .Values.loki.memberlistConfig }}
142144
{{- toYaml .Values.loki.memberlistConfig | nindent 2 }}
@@ -415,6 +417,9 @@ loki:
415417
up_to: 3
416418
# -- Optional compactor configuration
417419
compactor: {}
420+
# -- Optional pattern ingester configuration
421+
pattern_ingester:
422+
enabled: false
418423
# -- Optional analytics configuration
419424
analytics: {}
420425
# -- Optional querier configuration
@@ -851,7 +856,6 @@ adminApi:
851856
# -- Grace period to allow the admin-api to shutdown before it is killed
852857
terminationGracePeriodSeconds: 60
853858

854-
855859
######################################################################################################################
856860
#
857861
# Gateway and Ingress
@@ -1175,7 +1179,6 @@ ingress:
11751179
# - loki.example.com
11761180
# secretName: loki-distributed-tls
11771181

1178-
11791182
######################################################################################################################
11801183
#
11811184
# Migration
@@ -1192,7 +1195,6 @@ migrate:
11921195
# memberlist service DNS so the new deployment can join its ring.
11931196
memberlistService: ""
11941197

1195-
11961198
######################################################################################################################
11971199
#
11981200
# Single Binary Deployment

0 commit comments

Comments
 (0)