From 21f3d09caab2cc6d64fbb07ceeaea8efbce25814 Mon Sep 17 00:00:00 2001 From: Ihor Urazov Date: Tue, 29 Jul 2025 12:43:53 +0300 Subject: [PATCH] feat(helm): Expose Loki UI in pure ingress (#18400) Signed-off-by: Jay Clifford <45856600+Jayclifford345@users.noreply.github.com> Co-authored-by: J Stickler Co-authored-by: Jay Clifford <45856600+Jayclifford345@users.noreply.github.com> --- docs/sources/setup/install/helm/reference.md | 6 ++++-- production/helm/loki/CHANGELOG.md | 3 +++ production/helm/loki/values.yaml | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/sources/setup/install/helm/reference.md b/docs/sources/setup/install/helm/reference.md index d3fa17defa..4371819723 100644 --- a/docs/sources/setup/install/helm/reference.md +++ b/docs/sources/setup/install/helm/reference.md @@ -6347,7 +6347,8 @@ null "distributor": [ "/api/prom/push", "/loki/api/v1/push", - "/otlp/v1/logs" + "/otlp/v1/logs", + "/ui" ], "queryFrontend": [ "/api/prom/query", @@ -6413,7 +6414,8 @@ null [ "/api/prom/push", "/loki/api/v1/push", - "/otlp/v1/logs" + "/otlp/v1/logs", + "/ui" ] diff --git a/production/helm/loki/CHANGELOG.md b/production/helm/loki/CHANGELOG.md index 4c4139431b..acba65fcc5 100644 --- a/production/helm/loki/CHANGELOG.md +++ b/production/helm/loki/CHANGELOG.md @@ -18,6 +18,9 @@ Entries should include a reference to the pull request that introduced the chang - [FEATURE] Added support for chunk-cache-l2 [#17556](https://github.com/grafana/loki/pull/17556) - [ENHANCEMENT] Add FOLDER_ANNOTATATION logic for sidecar container. [#13289](https://github.com/grafana/loki/pull/13289) - [ENHANCEMENT] Add configurable `livenessProbe` and `startupProbe` for admin-api. [#18546](https://github.com/grafana/loki/pull/18546) +- [FEATURE] Added support for chunk-cache-l2 [#17556](https://github.com/grafana/loki/pull/17556) +- [ENHANCEMENT] Add FOLDER_ANNOTATATION logic for sidecar container. [#13289](https://github.com/grafana/loki/pull/13289) +- [ENHANCEMENT] Expose Loki UI in pure ingress. [18400](https://github.com/grafana/loki/pull/18400) ## 6.33.0 diff --git a/production/helm/loki/values.yaml b/production/helm/loki/values.yaml index 0a5c640ff7..85c2e298a5 100644 --- a/production/helm/loki/values.yaml +++ b/production/helm/loki/values.yaml @@ -1335,6 +1335,7 @@ ingress: - /api/prom/push - /loki/api/v1/push - /otlp/v1/logs + - /ui # -- Paths that are exposed by Loki Query Frontend. # If deployment mode is Distributed, the requests are forwarded to the service: `{{"loki.queryFrontendFullname"}}`. # If deployment mode is SimpleScalable, the requests are forwarded to write k8s service: `{{"loki.readFullname"}}`.