Fix OCI artifact checksum instability causing FluxCD reconciliation issues #33
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.
Problem
OCI artifacts generated by the proxy had unstable checksums, causing FluxCD to detect "new" artifacts on every reconciliation cycle even when the chart content was unchanged. This resulted in unnecessary
helm upgrade
operations and continuous reconciliation events like:The same chart version (
1.13.3
) was producing different checksums each time it was processed.Root Cause
In
internal/manifest/dst.go
, theCreatedAt
field was set totime.Now()
each time a manifest was created, causing identical chart content to have different timestamps and therefore different checksums.Solution
Implemented deterministic timestamp generation that ensures reproducible OCI artifacts:
Created
timestamp from the Helm repository index when availablechartName@version
time.Now()
only when no chart version information is availableChanges Made
Modified
internal/manifest/dst.go
:chartVer
field toInternalDst
struct to store chart metadataNewInternalDstWithChartVer()
constructorgetDeterministicTimestamp()
methodPush()
method to use deterministic timestampsUpdated
internal/manifest/charts.go
:prepareChart()
to pass chart version data to the destinationTesting
Added comprehensive tests covering:
Created
timestamp is availableResult
The same chart version now produces identical checksums every time:
Fixes #[issue-number] where FluxCD was continuously reconciling due to unstable OCI artifact checksums.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.
Summary by cubic
Make OCI artifact generation reproducible for a given Helm chart tgz, producing a stable checksum and stopping FluxCD from triggering upgrades on each reconcile. Fixes #32.