From d09492a623e1bf218668fb11bd889974bd001f86 Mon Sep 17 00:00:00 2001 From: Ramon Marquez Date: Fri, 10 Jul 2026 22:56:05 +0200 Subject: [PATCH] fix(ingress): pin default-backend image to busybox:1.38.0 The ingress default backend (the static "nodes not ready" waiting page) used busybox:latest, making image selection non-reproducible -- a chart upgrade or pod reschedule could silently pull a different busybox build. Pin it to a specific release tag, consistent with how the chart pins its other images. Co-Authored-By: Claude Opus 4.8 (1M context) <[EMAIL_ADDRESS_REDACTED]> --- charts/graylog/templates/workload/fallback.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/graylog/templates/workload/fallback.yaml b/charts/graylog/templates/workload/fallback.yaml index 79da232..87aa2bc 100644 --- a/charts/graylog/templates/workload/fallback.yaml +++ b/charts/graylog/templates/workload/fallback.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: busybox - image: busybox:latest + image: busybox:1.38.0 command: ["httpd", "-f", "-v", "-h", "/home", "-p", "3000", "-h", "/var/www/html", "-c", "/etc/httpd.conf"] volumeMounts: - name: content