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 <julie.stickler@grafana.com>
Co-authored-by: Jay Clifford <45856600+Jayclifford345@users.noreply.github.com>
pull/16776/head
Ihor Urazov 6 months ago committed by GitHub
parent 8e61a5bd23
commit 21f3d09caa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      docs/sources/setup/install/helm/reference.md
  2. 3
      production/helm/loki/CHANGELOG.md
  3. 1
      production/helm/loki/values.yaml

@ -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"
]
</pre>
</td>

@ -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

@ -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"}}`.

Loading…
Cancel
Save