-
Notifications
You must be signed in to change notification settings - Fork 202
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
Support for disconnected environments for resolverTasks #2174
Support for disconnected environments for resolverTasks #2174
Conversation
Hi @Aneesh-M-Bhat. Thanks for your PR. I'm waiting for a tektoncd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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/test-infra repository. |
/ok-to-test |
@Aneesh-M-Bhat I don't see
|
hack/openshift/update-image-sha.sh
Outdated
@@ -51,6 +51,7 @@ declare -A IMAGES=( | |||
["s2i"]="registry.redhat.io/source-to-image/source-to-image-rhel8" | |||
["ubi-minimal"]="registry.redhat.io/ubi8/ubi-minimal" | |||
["java"]="registry.redhat.io/ubi8/openjdk-17" | |||
["oc"]="registry.redhat.io/openshift4/ose-cli" |
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.
should we use the internal image that we get in image registry of cluster for this like the oc clustertask
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.
do you mean like this image in the oc clustertask?
image: image-registry.openshift-image-registry.svc:5000/openshift/cli:$(params.VERSION)
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.
we can use internal image registry image image-registry.openshift-image-registry.svc:5000/openshift/cli:latest
fa1bd49
to
a8007d6
Compare
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.
Hope all the envs are properly verified
operatorhub/openshift/config.yaml
Outdated
@@ -62,6 +62,9 @@ image-substitutions: | |||
envKeys: | |||
- IMAGE_PIPELINES_ARG__GIT_IMAGE | |||
- IMAGE_ADDONS_PARAM_GITINITIMAGE | |||
- IMAGE_ADDONS_GIT_RUN | |||
- IMAGE_ADDONS_PREPARE |
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.
why git-init for prepare and report steps?
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.
yep prepare we dont need it, but for report step we do, because we use the git command to fetch the latest commit, so it needs it.
hack/openshift/update-image-sha.sh
Outdated
@@ -51,6 +51,7 @@ declare -A IMAGES=( | |||
["s2i"]="registry.redhat.io/source-to-image/source-to-image-rhel8" | |||
["ubi-minimal"]="registry.redhat.io/ubi8/ubi-minimal" | |||
["java"]="registry.redhat.io/ubi8/openjdk-17" | |||
["oc"]="registry.redhat.io/openshift4/ose-cli" |
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.
we can use internal image registry image image-registry.openshift-image-registry.svc:5000/openshift/cli:latest
a8007d6
to
4aea51f
Compare
LGTM @piyush-garg PTAL @Aneesh-M-Bhat has addressed all the comments |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jkandasa 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 |
/cherry-pick release-v0.71.x |
@jkandasa: #2174 failed to apply on top of branch "release-v0.71.x":
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 kubernetes/test-infra repository. |
Changes
This PR adds various images that are used by the ecosystem tasks to be accessible for mirroring for running in disconnected environments, along with few other minor changes.
JIRA Issue: https://issues.redhat.com/browse/SRVKP-4591
Submitter Checklist
These are the criteria that every PR should meet, please check them off as you
review them:
make test lint
before submitting a PRSee the contribution guide for more details.
Release Notes