-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
✨Upgrade k8s dependencies from 1.23.0 to 1.23.5 #1843
Conversation
439432e
to
ca025b1
Compare
Change looks fine Should this be cherry-picked into release-0.11? (assuming that kubebuilder wants to build on top of a CR release and the v0.12.0 release is probably based on Kubernetes 1.24) |
@sbueringer Yes I think so. |
@NikhilSharmaWe Otherwise, /lgtm |
ca025b1
to
6cd5aaf
Compare
@camilamacedo86 Changed the commit title. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alvaroaleman, NikhilSharmaWe 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-0.11 |
@joelanford: #1843 failed to apply on top of branch "release-0.11":
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. |
@joelanford What could be the reason behind the failure to apply these changes on top of branch |
@NikhilSharmaWe There is a merge conflict. It should be fine if you create the cherry-pick PR against release-0.11 manually. |
@sbueringer So I must first create a create a PR against release-0.11 and then make changes manually in go.mod and go.sum. |
@sbueringer I created a PR against release-0.11 branch https://github.com/kubernetes-sigs/controller-runtime/pull/1852/commits without making any changes (so that I could add the changes in go.mod and go.sum manually) but after making the PR 5 commits are already present, is it expected? Should I add the changes in go.mod and go.sum on top of these. |
If you create the new branch based on the release-branch this shouldn't happen, but I see that #1853 looks okay. I usually use something like: git checkout release-0.11
git pull
git checkout -b <new-branch-name>
git cherry-pick <commit-id>
<resolve merge conflicts>
git cherry-pick --continue
git push -u origin <new-branch-name> But it doesn't matter how exactly you do it as long as the PR looks fine :) |
This Bumps all k8s dependencies.
PR was made for
Bumping k8s 1.23.3 to get bug fixes in kubernetes-sigs/kubebuilder
kubernetes-sigs/kubebuilder#2502, these changes are required before we can do that.