-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Switch to dep for dependency management #78
Comments
Switching to dep or glide will enable an alternative to this proposal on how to publish client-go. We set up the manifest of dep (or glide) to always vendor the latest version of k8s.io/apimachinary. We set up the publishing robot to publish to k8s.io/apimachinary first, so that a real commit exists in the apimachinary repo; then the publishing robot copies staging/client-go, and run Did I miss something? I'll experiment with this approach later tonight. @deads2k @lavalamp @stts. |
I think the idea is good. Assuming one pusher (the bot) or a coordinated pusher (one of us manually), this should guarantee a matched set assuming client-go has a similar sync script. For branches, you'll need to restrict to a branch. |
I don't think client-go having a similar sync script is a requirement for this idea to work. But apimachinery's sync script does some nice things like keeping the history, so I'll migrate client-go's script to yours. I'll implement the necessary changes for the robot to implement the idea. |
@caesarxuchao I like the idea. I don't see the connection though to golang/dep. We can do the same with Godeps now (if golang/dep support takes some time). |
Yeah, I'm implementing it with Godeps now. |
I manually experimented the idea, it's working. The robot is mostly done, but I stuck at running https://github.com/kubernetes/apimachinery/blob/master/hack/sync-from-kubernetes.sh, it keeps complaining The only change I made to the script it fetching from |
The repo isn't a straight filter branch. The script as a for instance, changes the SHAs. So does the metadata about what it matches. |
Sorry, I don't follow you. What should I do to run that script successfully? |
Sorry, I misread what you were doing. My log on the kube-sync branch post-filter branch looks like this: https://gist.github.com/deads2k/7ce8f3a2dbcb564a8b369c782625800e What does yours look like? |
The SHAs are different, commit messages are the same. Also, did you miss the lines after "d3c7cb5 Move first pkg/api/validation's into apimachinery"? |
Yours handles the signed commits better. Do I have an old git maybe? |
And I'm on OSX 10.11.6 |
Fedora
|
well, this going to be a problem. |
Ok, found http://stackoverflow.com/questions/31552774/unexpected-behavior-with-git-filter-branch-and-signed-commits . Looks like mine is working correctly even if its ugly, since I changed the diff of the patch with filter-branch and logically the owner didn't sign it anymroe. |
The robot is using git version 2.1.4, and it's producing the same |
@caesarxuchao will you put most of the tooling about the godep update into the kube repo? |
So I have git version 2.5.5, chao has 2.11. 2.1 worked, 2.11 worked, 2.5.5 produces weird commits. We shouldn't rewrite history, but we can correct since the metadata is on disk. We should correct the filter-branch sha and use a working version of git moving forward. |
Alright, I've updated my git version, corrected the filter-branch-sha, and pushed a new sync. I did not rewrite history, so we've got some ugly commit messages we'll have to live with for all eternity. |
@lavalamp @smarterclayton @liggitt in the experiment you've created here: https://github.com/lavalamp/client-go-flat/, how would another library writer who generated his clients using our client generator against the apimachinery repo go about creating a compatible client? The signatures for anything that uses an apimachinery type like As we add aggregated API servers, we expect this to be more common, not less, correct? |
Yes, my experiment is aimed at people who don't want to think about
vendoring. People who want to write an apiserver will have to vendor.
…On Thu, Feb 2, 2017 at 7:11 AM, David Eads ***@***.***> wrote:
@lavalamp <https://github.com/lavalamp> @smarterclayton
<https://github.com/smarterclayton> @liggitt <https://github.com/liggitt>
in the experiment you've created here: https://github.com/lavalamp/
client-go-flat/, how would another library writer who generated his
clients using our client generator against the apimachinery repo go about
creating a compatible client? The signatures for anything that uses an
apimachinery type like RESTClient https://github.com/kubernetes/
kubernetes/blob/master/staging/src/k8s.io/client-go/rest/client.go#L61-L89
will be incompatible.
As we add aggregated API servers, we expect this to be more common, not
less, correct?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#78 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAnglpZFph6zIgxSmrhJmrHoqgCFPS-rks5rYfIggaJpZM4Ls_Zy>
.
|
But at the same time, the experiment makes it impossible for someone writing their API server to provide a client of their own for people who don't to think about it. Basically, it means that no aggregated API server will be able to have |
Sent kubernetes/kubernetes#40909 and kubernetes/test-infra#1784 to implement the idea. |
Some issues that may be blocking:
Anything else anyone's hit? |
Hi, |
Yes, we are actively working on creating a Gopkg.toml inside of client-go during publishing. Some more patience please. We finally make progress. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle rotten |
Any update? |
Yes, the publishing-bot can publish Gopkg.toml (kubernetes/publishing-bot#55), but we are blocked on dep. |
If you get to this issue and want to follow the workaround of specifying overrides for all transitive dependencies, here are the overrides for release 7.0. https://gist.github.com/ryanwalls/96ffc7a218c05cfdfcdecdaf413b9e13
|
Hmm - that gist is not working for me - I'm seeing:
Having so much pain with go-client deps! |
So, it seems the go team mostly considers dep a failed experiment. We'll have to continue to live in a world of pain until golang/go#24301 rolls out and we figure out how to start publishing packages that play nice. |
I filed kubernetes/kubernetes#63607 to call more attention to this. |
I agree.
I don't agree with this. It would be very good for client-go to be made to work well with It is seriously painful to upgrade client-go in dep-based projects so projects like the ones I work on avoid doing so unless/until absolutely necessary. This is bad and is worth fixing. |
At the very least, in the event of a security vulnerability that gets fixed by releasing new version(s) of client-go, it is important to provide the workarounds needed to get |
that is indeed Russ' opinion. I have a number of thoughts about what k8s can do that will roll sanely into the future. unfortunately, all my time is right now is taken up by working on vgo response blog posts 😢 imma be publishing the first of those this week, though, so my time will start unblocking soon. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Any update here? Has client-go abandoned dep (even in the interim until vgo is stable)? |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
@fejta-bot: Closing this issue. 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. |
https://github.com/golang/dep
I.e., publish whatever dep needs instead of Godeps.json, and change documentation to tell people to download via
dep ensure
. (After testing to make sure it works--feel free to make a temporary branch if that helps testing.)The text was updated successfully, but these errors were encountered: