Fix Hermeto prefetch failure for openshift/installer dependency - #740
Open
danielerez wants to merge 1 commit into
Open
Fix Hermeto prefetch failure for openshift/installer dependency#740danielerez wants to merge 1 commit into
danielerez wants to merge 1 commit into
Conversation
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: danielerez The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
danielerez
force-pushed
the
fix-hermeto-installer-pseudo-version
branch
from
August 6, 2026 18:00
2e3f1c3 to
b5a92b2
Compare
Issue: Hermeto (prefetch-dependencies) fails with 404 when downloading github.com/openshift/installer through the internal Konflux caching proxy (artifact-registry-proxy). The proxy does not serve this module at any pseudo-version. A v1.4.17 tag was also added to the release-4.16 branch after the dependency was originally pinned, invalidating the old v0.0.0-based pseudo-version. Solution: 1. Update the pseudo-version to the canonical form v1.4.17-0.20241029183827-aa89bb16f585 (same commit, correct base version). 2. Add GOPRIVATE=github.com/openshift/installer via Hermeto's config-file-content parameter in both Tekton pipeline files. This instructs the Go toolchain to bypass the broken caching proxy and fetch the module directly from GitHub. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
danielerez
force-pushed
the
fix-hermeto-installer-pseudo-version
branch
from
August 6, 2026 18:15
b5a92b2 to
3a6186a
Compare
|
@danielerez: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
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.
Issue:
Hermeto (prefetch-dependencies) fails with 404 when resolving github.com/openshift/installer@v0.0.0-20241029183827-aa89bb16f585. The go module proxy no longer recognizes this pseudo-version because a tag (v1.4.17) was added to the release-4.16 branch after the dependency was originally pinned, changing the canonical pseudo-version format from v0.0.0-... to v1.4.17-0....
Solution:
Update the pseudo-version to the canonical form
v1.4.17-0.20241029183827-aa89bb16f585. This points to the exact same commit (aa89bb16f585) on the release-4.16 branch, but uses the correct base version that the Go module proxy now expects.