-
Notifications
You must be signed in to change notification settings - Fork 213
Bump openshift/api #817
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
Bump openshift/api #817
Conversation
Support for resourcelock.ConfigMapLock will be removed in one of the next k8s client-go releases. Therefor we migrate to ConfigMapsLeasesResourceLock. Signed-off-by: Christoph Stäbler <[email protected]>
|
Skipping CI for Draft Pull Request. |
|
/test ? |
|
@creydr: The following commands are available to trigger required jobs:
Use 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. |
|
/test unit |
9bcfa02 to
0d0351f
Compare
|
/test all |
0fa94e7 to
8278319
Compare
|
/assign @LalatenduMohanty |
|
/retest |
1 similar comment
|
/retest |
8278319 to
7b0b01a
Compare
$ go get github.com/openshift/api@51f399230d604fa013c2bb341040c4ad126e7309 $ go get github.com/openshift/client-go@984ee5ebedcf $ go get github.com/openshift/library-go@84c00ba9649a $ go mod tidy $ go mod vendor $ git add -A go.* vendor Signed-off-by: Christoph Stäbler <[email protected]>
Co-authored-by: Ricardo Lüders <[email protected]> Signed-off-by: Christoph Stäbler <[email protected]>
7b0b01a to
c6ddf92
Compare
LalatenduMohanty
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.
The PR looks fine to me except the sequence of commits. The commit for Migrate to ConfigMapsLeasesResourceLock should be after the API bump commit
The reason for having it before was that we would always have a "working" build. (the ConfigMapLock is not available in the new dependencies - was removed/made private in client-go v0.24) |
LalatenduMohanty
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.
/lgtm
|
@creydr: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions 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. I understand the commands that are listed here. |
|
/lgtm cancel as #801 has more recent bump |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: creydr The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/close |
|
@creydr: 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. |
Bump openshift/api and its k8s dependencies
Hints for reviewers:
I adjusted the unit tests for the new capabilities.
The
TestCVO_InitImplicitlyEnabledCapsseemed to be a bit flacky, because of some unordered slice (ImplicitlyEnabledCaps):in https://gcsweb-ci.apps.ci.l2s4.p1.openshiftapps.com/gcs/origin-ci-test/pr-logs/pull/openshift_cluster-version-operator/817/pull-ci-openshift-cluster-version-operator-master-unit/1557028368216494080/artifacts/test/build-log.txt
(can be seen as the unit tests in this PR are flaky before commit 8278319).
So I added a sort in the test before comparing the actual with expected status:
cluster-version-operator/pkg/cvo/cvo_scenarios_test.go
Line 3933 in 0fa94e7