-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There is no version of registry.access.redhat.com/ubi8/go-toolset with golang 1.20: ``` $ podman build -f ./images/build-e2e/Dockerfile . [1/2] STEP 1/5: FROM registry.access.redhat.com/ubi8/go-toolset:1.20 AS builder Trying to pull registry.access.redhat.com/ubi8/go-toolset:1.20... Error: creating build container: initializing source docker://registry.access.redhat.com/ubi8/go-toolset:1.20: reading manifest 1.20 in registry.access.redhat.com/ubi8/go-toolset: manifest unknown ``` This commit switches to registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.20-openshift-4.15 which has golang 1.20 and is usable without authentication. This stays on a rhel8 image as some of the test nodes are still using rhel8, and building on a rhel9 node, and trying to run on a rhel8 node is not possible (some libc linking issues at startup). The builds will be noisy until openshift-eng/art-tools#115 is merged and gets into these images. If needed, we can set GO_COMPLIANCE_INFO=0 in the images environment to make the build more quiet.
- Loading branch information
Showing
5 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM registry.access.redhat.com/ubi8/go-toolset:1.14.12 | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.20-openshift-4.15 | ||
MAINTAINER CRC <[email protected]> | ||
|
||
WORKDIR $APP_ROOT/src | ||
|
This file contains 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
This file contains 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