-
Notifications
You must be signed in to change notification settings - Fork 250
Create a resuable verify package for image release verification #837
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
Create a resuable verify package for image release verification #837
Conversation
5ed2982 to
7ec1baf
Compare
|
/retest |
|
/retitle Create a resuable verify package for image release verification |
7ec1baf to
f2a7915
Compare
|
/hold |
a8f7bc1 to
8ff8d9f
Compare
|
Created new test cases in |
|
/unhold |
8ff8d9f to
d444be4
Compare
d444be4 to
8a3b061
Compare
8a3b061 to
892e7fb
Compare
Both the oc client application and the CVO do image release verification. Image release verification was recently added to the oc client and at that time any code required was simply copied from the CVO were it was originally developed. This change moves the code required for image release verification, the CVO package verify, from the CVO into library-go for reuse by CVO and the oc client application and applies any required changes to make it reusabe by both.
892e7fb to
c43c2cb
Compare
wking
left a comment
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.
$ git --no-pager -C cluster-version-operator log -1 --oneline
34010292 (HEAD -> master, wking/master, origin/release-4.7, origin/release-4.6, origin/master, origin/HEAD) Merge pull request #439 from wking/fix-component-regexp-docs
$ git --no-pager -C library-go log -1 --oneline
c43c2cb20 (HEAD, origin/pr/837) Create a resuable verify package for image release verification
$ diff -ru cluster-version-operator/pkg/verify library-go/pkg/verify
...nothing serious.../lgtm
/approve
|
/close In case this will help Prow notice #868. |
|
@wking: Closed this PR. DetailsIn 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. |
|
/reopen |
|
@wking: Reopened this PR. DetailsIn 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. |
|
/approve |
|
golang/x dep is ok /approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, jottofar, wking 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 |
This function calls the callback for each signature, it doesn't return a list. Fixes a godoc from the original implementation in c43c2cb (Create a resuable verify package for image release verification, 2020-07-16, openshift#837).
Typo slipped in when the file was created in c43c2cb (Create a resuable verify package for image release verification, 2020-07-16, openshift#837).
Both the oc client application and the CVO do image release verification. Image release verification was recently added to the oc client and at that time any code required was simply copied from the CVO were it was originally developed. This change moves the code required for image release verification, the CVO package verify, from the CVO into library-go for reuse by CVO and the oc client application and applies any required changes to make it reusable by both.