Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions bitnami/grafana-loki/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 4.8.4 (2025-04-28)
## 4.8.5 (2025-04-29)

* [bitnami/grafana-loki] Release 4.8.4 ([#33208](https://github.com/bitnami/charts/pull/33208))
* [bitnami/grafana-loki] add /otlp/v1/logs as gateway-endpoint for distributor via gateway ([#33190](https://github.com/bitnami/charts/pull/33190))

## <small>4.8.4 (2025-04-28)</small>

* [bitnami/grafana-loki] Release 4.8.4 (#33208) ([25336fa](https://github.com/bitnami/charts/commit/25336fa2c1a002fd7dc483f726d59bf1d416cae3)), closes [#33208](https://github.com/bitnami/charts/issues/33208)

## <small>4.8.3 (2025-04-25)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/grafana-loki/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ maintainers:
name: grafana-loki
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki
version: 4.8.4
version: 4.8.5
4 changes: 4 additions & 0 deletions bitnami/grafana-loki/templates/gateway/configmap-http.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ data:
proxy_pass http://{{ include "grafana-loki.distributor.fullname" . }}.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}:3100$request_uri;
}

location = /otlp/v1/logs {
proxy_pass http://{{ include "grafana-loki.distributor.fullname" . }}.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}:3100$request_uri;
}

location = /loki/api/v1/tail {
proxy_pass http://{{ include "grafana-loki.querier.fullname" . }}.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}:3100$request_uri;
proxy_set_header Upgrade $http_upgrade;
Expand Down
Loading