chore: fix correct filename for provenance file (#1492)#1497
Merged
jakobmoellerdev merged 1 commit intoJun 3, 2025
Conversation
…#1492) According to the helm [spec](https://github.com/helm/community/blob/05eab5bba990d4f5556f90bfc001662d1a76f9a5/hips/hip-0006.md#2-support-for-provenance-files) > assuming the presence of a file suffixed with .prov sitting next to a chart .tgz in a repository. This is why, we initially downloaded the provenance file into a file with only the `.prov` extension. However, according to the [helm documentation](https://github.com/helm/helm-www/blob/cf3e4f875101fa3f72ff6194499b5365723f0ec1/content/en/docs/topics/provenance.md) > For example, if the base URL for a package is https://example.com/charts/mychart-1.2.3.tgz, the provenance file, if it exists, MUST be accessible at https://example.com/charts/mychart-1.2.3.tgz.prov. Accordingly, we changed the filename for the provenance content to include the extensions of the original helm-chart (cherry picked from commit ab3c2d9)
fabianburth
approved these changes
Jun 3, 2025
fe30b48
into
open-component-model:releases/v0.23
19 checks passed
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.
According to the helm
spec
This is why, we initially downloaded the provenance file into a file with only the
.provextension. However, according to the helm documentationAccordingly, we changed the filename for the provenance content to include the extensions of the original helm-chart
(cherry picked from commit ab3c2d9)