-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NO-JIRA: ci/get-ocp-repo.sh: generalize and reuse #1650
NO-JIRA: ci/get-ocp-repo.sh: generalize and reuse #1650
Conversation
I think at the time I wrote this, I hadn't set up the pipeline yet for it, so I wasn't sure what its tag name was going to me. We know it now, so just fix this.
Let's wait for branching to get this one in. |
I'm looking at building the node image in OpenShift CI and of course we also need to fetch the OCP repos in that flow too. Let's make `get-ocp-repo.sh` support all the use cases it needs, which allows us to dedupe with `ci/prow-entrypoint.sh`.
16cf352
to
e47c4af
Compare
CI output looks weird:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM on the approach.
Yeah, it requires #1651. |
/test images |
@jlebon: This pull request explicitly references no jira issue. In response to this:
Instructions 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 openshift-eng/jira-lifecycle-plugin repository. |
/hold cancel |
# This should match the /etc/os-release manipulation we do below when | ||
# injecting `OPENSHIFT_VERSION`. It's used by CI to determine the repos to | ||
# inject when building the layered image. | ||
ocp_version: "4.18" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't we 4.19 now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, this will be bumped along with the other 4.18 references in the repo.
We haven't made the 4.19 bump yet. /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jlebon, travier The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
I'm working on the version bump. We have a openshift/release PR that hasn't merged yet. |
@jlebon: all tests passed! Full PR test history. Your PR dashboard. Instructions 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. |
I'm looking at building the node image in OpenShift CI and of course we
also need to fetch the OCP repos in that flow too.
Let's make
get-ocp-repo.sh
support all the use cases it needs, whichallows us to dedupe with
ci/prow-entrypoint.sh
.