vendor: k8s.io/kubernetes/pkg/...@v1.5.3 #12230
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The whole process involved more than just
govendor add k8s.io/kubernetes/pkg/...
&govendor fetch k8s.io/kubernetes/pkg/...@v1.5.3
because some dependencies were incorrectly parsed, so I had toadd
&fetch
manually after editing thevendor.json
& adding correct revisions.With that said I did not touch any other files manually within the
vendor/
folder.Also I originally thought we could use https://github.com/kubernetes/client-go which is linked from https://github.com/kubernetes/community/blob/master/contributors/devel/client-libraries.md but the whole
client-go
library has broken dependencies in a way that it was very difficult for govendor to deal with. See kubernetes/client-go#83This is why I decided to pick the library inside
kubernetes/kubernetes
which in turn probably involves more LOC generally - hence the 500k+ diff. 😞The K8S provider PR will follow.