-
Notifications
You must be signed in to change notification settings - Fork 45
Bug 1948719: update k8s dependencies to 1.21 #209
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
Bug 1948719: update k8s dependencies to 1.21 #209
Conversation
|
@elmiko: This pull request references Bugzilla bug 1948719, which is valid. The bug has been updated to refer to the pull request using the external bug tracker. 3 validation(s) were run on this bug
Requesting review from QA contact: 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. |
|
govet is failing here, but passing locally. not quite sure why |
|
This is broken due to the Azure/AWS dependencies being out of date, these will need updating too |
ea53a63 to
d6c8fb9
Compare
|
i re-updated the vendor here, but i think that was premature. we need to wait for openshift/cluster-api-provider-azure#214 and openshift/cluster-api-provider-gcp#159 to merge, then re-vendor here. iiuc |
|
Also bunch of fixes needed due to runtime client changes :( p.s. https://paste.centos.org/view/3c5e736c - patch |
|
thanks @lobziik! when the other PRs merge and i update this, i will add the changes from your patch. |
d6c8fb9 to
af19bb1
Compare
|
updated
|
af19bb1 to
5ee52f4
Compare
|
minor fixup for go vet errors, also reflowed the commits to make it easier to fix |
|
/retest |
|
/approve Dependencies have been updated, no longer need the hold /retest |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: JoelSpeed 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 |
|
@elmiko The dependent PR has merged, could you try updating the MAO dependency here with the latest changes and see if it passes the tests? Feel free to hold cancel once you've pushed the changes |
|
thanks @JoelSpeed , i missed that other dep. i will update shortly. |
This change updates the go.mod and related vendor files to the kubernetes 1.21 baseline. This was achieved by updating some of the entries in go.mod and then running make vendor. The updates to go.mod were as follows: ``` github.com/openshift/api master github.com/openshift/cluster-autoscaler-operator master github.com/openshift/cluster-api-provider-gcp master github.com/openshift/machine-api-operator master replace sigs.k8s.io/cluster-api-provider-aws => github.com/openshift/cluster-api-provider-aws master replace sigs.k8s.io/cluster-api-provider-azure => github.com/openshift/cluster-api-provider-azure master ``` Then ran `make vendor` to produce output.
This function had errors after the dependency update and is no longer used in the tests. thanks to @lobziik for the patch
This change adds a few fixes that are needed for the dependency update. They are mostly changing `runtime.Object` references into `runtimeclient.Object`. thanks to @lobziik for the patch
5ee52f4 to
d9491e6
Compare
|
updated
given that this change set now includes the updates that were added in #211, i am going to change that PR so we don't have duplicates. |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: JoelSpeed 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 |
|
/lgtm |
this brings the version past the 0.9.0-alpha
|
/lgtm |
|
/retest |
|
@elmiko: Some pull requests linked via external trackers have merged:
The following pull requests linked via external trackers have not merged: These pull request must merge or be unlinked from the Bugzilla bug in order for it to move to the next state. Once unlinked, request a bug refresh with Bugzilla bug 1948719 has not been moved to the MODIFIED state. 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. |
This change updates the go.mod and related vendor files to the
kubernetes 1.21 baseline. This was achieved by updating some of the
entries in go.mod and then running make vendor.
The updates to go.mod were as follows:
Then ran
make vendorto produce output.