feat(kromgo): update image ghcr.io/home-operations/kromgo 0.14.12 → 0.15.0 (#49896)

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

<details>
<summary>home-operations/kromgo
(ghcr.io/home-operations/kromgo)</summary>

###
[`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
([#&#8203;288](https://redirect.github.com/home-operations/kromgo/issues/288))
- prefix all environment variables with KROMGO\_
([#&#8203;286](https://redirect.github.com/home-operations/kromgo/issues/286))
- serve health on the main port; metrics port becomes fully optional
([#&#8203;285](https://redirect.github.com/home-operations/kromgo/issues/285))

##### Features

- drop the legacy /-/health and /-/ready aliases
([#&#8203;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\_
([#&#8203;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
([#&#8203;285](https://redirect.github.com/home-operations/kromgo/issues/285))
([948cab4](https://redirect.github.com/home-operations/kromgo/commit/948cab4e1cab29b9acafb7e4697dfe8911a8a54b))

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->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).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9rcm9tZ28iLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
This commit is contained in:
TrueCharts Bot
2026-07-05 20:24:12 +02:00
committed by GitHub
parent 2a9536055f
commit 4e75c66456
2 changed files with 12 additions and 15 deletions
+2 -2
View File
@@ -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
+10 -13
View File
@@ -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: