-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with OpenShift CI Interop tests failing due to error with g…
…libc when executing any `oc` command (#7243) * Use build root tag compatible with oc 4.16 (and below) For reference, the following command was used to list all the image tags: ``` skopeo list-tags docker://registry.ci.openshift.org/openshift/release ``` * Update README.md for build root image
- Loading branch information
Showing
2 changed files
with
3 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Dockerfile to bootstrap build and test in openshift-ci | ||
|
||
FROM registry.ci.openshift.org/openshift/release:golang-1.19 | ||
FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.19-openshift-4.15 | ||
|
||
RUN yum -y install make wget gcc git httpd-tools |
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,5 +1,4 @@ | ||
# Base Image for running tests on OpenShift CI | ||
|
||
This image is meant to be used as build root for tests on [OpenShift CI](https://github.com/openshift/release/blob/master/ci-operator/config/redhat-developer/odo/redhat-developer-odo-master.yaml) | ||
You can find out more in the [ | ||
](https://github.com/openshift/ci-operator/blob/master/CONFIGURATION.md) | ||
This image is meant to be used as build root for tests on [OpenShift CI](https://github.com/openshift/release/blob/master/ci-operator/config/redhat-developer/odo/) | ||
You can find out more in the [CI Operator docs](https://docs.ci.openshift.org/docs/architecture/ci-operator/#build-root-image) ([archived link](https://github.com/openshift/ci-operator/blob/master/CONFIGURATION.md#build_root)). |