From 4e75c664568f03775dc7a129e4054195a20dcaf6 Mon Sep 17 00:00:00 2001 From: TrueCharts Bot Date: Sun, 5 Jul 2026 20:24:12 +0200 Subject: [PATCH] =?UTF-8?q?feat(kromgo):=20update=20image=20ghcr.io/home-o?= =?UTF-8?q?perations/kromgo=200.14.12=20=E2=86=92=200.15.0=20(#49896)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/home-operations/kromgo](https://redirect.github.com/home-operations/kromgo) | minor | `f25f946` → `f3c01a0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes
home-operations/kromgo (ghcr.io/home-operations/kromgo) ### [`v0.15.0`](https://redirect.github.com/home-operations/kromgo/blob/HEAD/CHANGELOG.md#0150-2026-07-04) [Compare Source](https://redirect.github.com/home-operations/kromgo/compare/0.14.12...0.15.0) ##### ⚠ BREAKING CHANGES - drop the legacy /-/health and /-/ready aliases ([#​288](https://redirect.github.com/home-operations/kromgo/issues/288)) - prefix all environment variables with KROMGO\_ ([#​286](https://redirect.github.com/home-operations/kromgo/issues/286)) - serve health on the main port; metrics port becomes fully optional ([#​285](https://redirect.github.com/home-operations/kromgo/issues/285)) ##### Features - drop the legacy /-/health and /-/ready aliases ([#​288](https://redirect.github.com/home-operations/kromgo/issues/288)) ([c6fe382](https://redirect.github.com/home-operations/kromgo/commit/c6fe382c911df12eddcdd7b34828a907e20494f1)) - prefix all environment variables with KROMGO\_ ([#​286](https://redirect.github.com/home-operations/kromgo/issues/286)) ([340c62d](https://redirect.github.com/home-operations/kromgo/commit/340c62dae2261599f98e312d877df18fbfa31330)) - serve health on the main port; metrics port becomes fully optional ([#​285](https://redirect.github.com/home-operations/kromgo/issues/285)) ([948cab4](https://redirect.github.com/home-operations/kromgo/commit/948cab4e1cab29b9acafb7e4697dfe8911a8a54b))
--- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> --- charts/stable/kromgo/Chart.yaml | 4 ++-- charts/stable/kromgo/values.yaml | 23 ++++++++++------------- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/charts/stable/kromgo/Chart.yaml b/charts/stable/kromgo/Chart.yaml index 2e221a68f99..8d4b812182b 100644 --- a/charts/stable/kromgo/Chart.yaml +++ b/charts/stable/kromgo/Chart.yaml @@ -9,7 +9,7 @@ annotations: trueforge.org/min_helm_version: "3.14" trueforge.org/train: stable apiVersion: v2 -appVersion: 0.14.12 +appVersion: 0.15.0 dependencies: - name: common version: 29.7.1 @@ -39,5 +39,5 @@ sources: - https://github.com/home-operations/kromgo - https://github.com/trueforge-org/truecharts/tree/master/charts/stable/kromgo type: application -version: 3.3.1 +version: 3.4.0 diff --git a/charts/stable/kromgo/values.yaml b/charts/stable/kromgo/values.yaml index c078ac1da77..863390cdd4c 100644 --- a/charts/stable/kromgo/values.yaml +++ b/charts/stable/kromgo/values.yaml @@ -1,7 +1,7 @@ # yaml-language-server: $schema=./values.schema.json image: repository: ghcr.io/home-operations/kromgo - tag: 0.14.12@sha256:f25f94610ba3b7e71753d3a33fdd9c47a2d94aab0b16eac15d0e53cfe52bf4fe + tag: 0.15.0@sha256:f3c01a0624c95db0f50a65ef901661774da5d2922a3187a2741e7149dee45f2a pullPolicy: IfNotPresent # Raw Kromgo configuration @@ -72,28 +72,25 @@ workload: containers: main: env: - PROMETHEUS_URL: "http://prometheus-operated.kube-prometheus-stack.svc.cluster.local:9090" - SERVER_PORT: "{{ $.Values.service.main.ports.main.port }}" - HEALTH_PORT: "{{ $.Values.service.main.ports.health.port }}" - # SERVER_LOGGING no false Enable HTTP request access logging - # SERVER_READ_TIMEOUT no — HTTP read timeout (e.g. 5s) - # SERVER_WRITE_TIMEOUT no — HTTP write timeout (e.g. 10s) - # QUERY_TIMEOUT no 30s Timeout applied to each Prometheus query - # LOG_LEVEL no info Log level: debug, info, warn, error - # LOG_FORMAT no json Log format: json or text + KROMGO_PROMETHEUS_URL: "http://prometheus-operated.kube-prometheus-stack.svc.cluster.local:9090" + KROMGO_SERVER_PORT: "{{ $.Values.service.main.ports.main.port }}" + KROMGO_HEALTH_PORT: "{{ $.Values.service.main.ports.health.port }}" + # KROMGO_SERVER_LOGGING no false Enable HTTP request access logging + # KROMGO_SERVER_READ_TIMEOUT no — HTTP read timeout (e.g. 5s) + # KROGMO_SERVER_WRITE_TIMEOUT no — HTTP write timeout (e.g. 10s) + # KROGMO_QUERY_TIMEOUT no 30s Timeout applied to each Prometheus query + # KROGMO_LOG_LEVEL no info Log level: debug, info, warn, error + # KROGMO_LOG_FORMAT no json Log format: json or text probes: liveness: type: http path: "/healthz" - port: "{{ $.Values.service.main.ports.health.port }}" readiness: type: http path: "/readyz" - port: "{{ $.Values.service.main.ports.health.port }}" startup: type: http path: "/readyz" - port: "{{ $.Values.service.main.ports.health.port }}" configmap: kromgo-configfile: