Bump dependent image digests - #36
Draft
inFocus7 wants to merge 2 commits into
Draft
Conversation
Signed-off-by: Fabian Gonzalez <fabian.gonzalez@solo.io>
Signed-off-by: Fabian Gonzalez <fabian.gonzalez@solo.io>
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.
Context
Part of a workstream to reduce CVEs in
kagentand dependencies.Bumps the third-party image pins in the Helm chart and the rendered manifests, and turns the RustFS bucket-init Job into a Helm hook so the chart can be upgraded (Jobs are immutable, and without the hook it caused failures on upgrade).
Why the
bucket-initJobbecomes ahookA Job's pod template is immutable. The chart's
rustfs-bucket-initwas a plain release resource, so anyhelm upgradethat changes its image fails withcannot patch "rustfs-bucket-init" with kind Job ... field is immutable. This PR is the first change to trip that (assuming by this not being in place before), but any future edit to the Job would have too.Verification
Image-level checks (Docker, arm64):
amd64andarm64children and match their tags.PostgreSQL 18.4data directory started under 18.6 with data intact.RustFS beta.3data directory started underrc.5with the chart's exact env, including default credentials on a single node; bucket, small and 12 MB multipart objects readable with matching checksums.aws-cli 2.36.43defaults to CRC64NVME trailing checksums (since2.23.0); verified head-bucket, create-bucket, and 12 MB streaming multipart uploads against both RustFS versions.Local Helm upgrade rehearsal (fresh kind cluster, gVisor, arm64):
0.0.26chart with its released images, deployed the counter demo from the v0.0.26 tag, created an actor, called it three times, suspended it. The bucket held the golden snapshot and the actor's snapshot.helm upgrade. The first attempt succeeded with no manual Job deletion, the hook Job ran with the newaws-cliimage, RustFS rc.5 and Postgres 18.6 rolled with all pre-upgrade objects and tables intact, a no-op upgrade re-ran the hook idempotently, andTestActorLifecycle/TestActorSnapshotLifecyclepassed on the upgraded cluster.Not verified
helm rollbackto a pre-hook revision probably needs the Job deleted first; not tested.CVEs
Before (current
main/ v0.0.26 pins) → After (this PR)rustfs1.0.0-beta.3v1.0.0-rc.5awsCli2.17.02.36.43postgres18-alpine(18.4)18.6-alpine3.24(18.6)busybox1.361.38.0346 → 99 High+ (−247), 37 → 9 Critical (−28).
Fixes #<issue_number_goes_here>