-
Notifications
You must be signed in to change notification settings - Fork 303
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
Move to k8s 1.15 #803
Move to k8s 1.15 #803
Conversation
Working on rebasing this. |
4ed0402
to
eec3a44
Compare
/assign @bowei |
/assign @spencerhance |
@prameshj: GitHub didn't allow me to assign the following users: spencerhance. Note that only kubernetes members, repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time. 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. |
ack |
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.
looks pretty good to me
pkg/backends/syncer.go
Outdated
"k8s.io/api/core/v1" | ||
"github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta" | ||
"k8s.io/legacy-cloud-providers/gce" | ||
|
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 we need this space here?
"github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud" | ||
"github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/mock" | ||
"k8s.io/legacy-cloud-providers/gce" | ||
|
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.
Same here
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.0.0-20190620090010-a60497bb9ffa | ||
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20190612205613-18da4a14b22b | ||
k8s.io/component-base => k8s.io/component-base v0.0.0-20190620085131-4cd66be69262 | ||
k8s.io/cri-api => k8s.io/cri-api v0.0.0-20190531030430-6117653b35f1 |
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.
it looks like a few of these dependencies are only listed in the replace block and not require. I didn't actually know that would work, but can you add them to the require block as well?
The replace values were manually entered.Removed "require" section which was re-populated by "go mod vendor"
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bowei, prameshj 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 |
In k8s 1.15, the cloudprovider code moved to k/k/staging and its own repo, k8s.io/legacy-cloud-providers.
So this PR includes the change to the new path for cloud provider gce dependency.
@bowei