fix(ingress): pin default-backend image to busybox:1.38.0#111
Open
monrax wants to merge 1 commit into
Open
Conversation
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]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The ingress default backend (the static "nodes not ready" waiting page) ran
busybox:latest. An unpinned tag makes image selection non-reproducible — a chart upgrade or pod reschedule could silently pull a different busybox build. This pins it to a specific release tag, consistent with how the chart pins its other images.Details
templates/workload/fallback.yaml:busybox:latest→busybox:1.38.0(latest stable busybox release; verified as an active tag on Docker Hub).Kept intentionally minimal: the default backend is a cosmetic, nginx-ingress-only static page, and
ingress.config.defaultBackend.enabled=falsealready provides a clean opt-out for environments wheredocker.iois unreachable — so no new values/schema surface was added.Linked issues
No linked issue — addresses the "pin fallback image tag" recommendation from the 2025-12 third-party chart evaluation.
PR Checklist
Please check the items that apply to your change.
Testing Checklist
Static Validation
helm lint ./charts/grayloghelm template graylog ./charts/graylog --validateInstallation
helm install graylog ./charts/graylogSpecific to this PR
ingress.enabled=true+ingress.config.defaultBackend.enabled=truebusybox:1.38.0(digestsha256:fd8d9aa6…), 0 restarts/healthz,/livez,/readyz→okE404handler for unmatched routes (default-backend behavior unchanged)Notes for reviewers
🤖 Generated with Claude Code