-
Notifications
You must be signed in to change notification settings - Fork 180
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
First revision of Setup and Build document #119
Conversation
@rschmied - thanks for the PR; this is useful! I am also in process of building a CentOS environment and will document the same for CentOS images. |
@rschmied thanks for the detailed write-up. It describes the build environment pretty well, that we just skim over in current A few minor knits
@jainvipin I think the intent of this doc is to just get user going with setting up their build environment. The dependency on etcd, consul etc are take care of by Vagrantfile and vagrant boxes themselves so they need not be documented here I think. |
Ok, I hope I did it right... :) |
Already up-to-date. | ||
$ | ||
|
||
### Sym Links |
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.
An alternative that doesn't require creating symlinks is to checkout your fork in $GOPATH/src/github.com/contiv/netplugin
directory as discussed here: #43 (comment)
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.
There's an easier way:
$ export GOPATH=$HOME
$ go get -d github.com/contiv/netplugin
$ cd $HOME/src/github.com/contiv/netplugin
$ git remote add erikh [email protected]:erikh/netplugin
Then you work with remote erikh
when pushing to your fork.
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.
The advantage is that you're always tracking contiv/netplugin as master.
LGTM. thanks! I realize it kind of closes the long standing #43 as well |
@mapuri: Sure you can compile things on one host, but how do you develop something that needs to work across multiple hosts (clustered environment) you'll need etcd/consul. I am assuming someone wouldn't want to be happy with having compiled things and run unit-tests.
Regardless, this is a good start and we can build on top of this. |
Yes, I agree. But may be I missed something. If my understanding is correct, this document shall suffice for setting up the environment on single host to build netplugin, launch a (simulated) multi-host environment on that host and run all tests, without having to setup those clusters manually. Are you looking for instructions to deploy etcd/consul in an actual bare-metal environment? I am not sure if we can provide instructions for that as those might be dependent on user's deployment environment like the network setup; cluster-discovery mechanisms etc. |
@mapuri - I am not sure how to do multi-host testing without running etcd/consul based distributed kv store. Thus installing them is necessary, whether bare-metal or VMs. Or, may be I am missing something :-)
|
I am not disagreeing. You didn't answer my question :-)
For a real deployment, I think we should rather have users follow instructions on etcd or consul website and follow the most up to date best practices of setting up a cluster suitable for their environment than having to keep those details here. |
@mapuri - of course For example, how can someone using a laptop/MAC create a development environment? Many who start working on netplugin face this problem. |
hmm, I wonder what development in a multi-clustered environment really mean. I think you are still looking for a test/demo environment. And as I described earlier Anyways, I think we are agreeing that this document will help them get started with pulling the workspace, installing Go and other tools (vagrant, vritualbox etc) needed to build the code run unti tests and system tests (atleast dodcker-in-docker ones). I agree we can keep improving it or do separate write-ups as we find cases. @rschmied |
I’m going to take a stab at rebuilding our build system here in the next few days. I will be sure to update the documentation, but I don’t think the make targets will differ, just the plumbing. -Erik
|
changed usernames to johndoe changed paths to include $GOPATH
got rid of symlinks and misleading steps
k... one more try :) |
LGTM @rschmied can you also please squash all your commits to a single commit to get this ready for merge? thanks. |
Yeah that's perfect, sorry to make this so complicated! LGTM after squash |
Dabbling into and still learning the intricacies of Git. I think that I should memorize this part. If I got it right, I would rebase my source tree since I have had the local changes in my fork already? Anyway, more dabbling required ;) |
Here are some (hopefully useful) instructions:
At this point your editor will open and you'll be asked to edit the text to provide rebase instructions. What you want to do is replace the Then,
And that should trigger CI and we can merge! |
OK, guys... I'm a bit at a loss here. I guess I messed it up by adding things to my fork in the master branch instead of adding it to a new / specific branch. I followed Erik's instructions and while doing so I ended up in a 'detached HEAD' state with the recommendation to create a new branch. Which I did. So I now have a new branch in my fork called 'doc-changes' with all my changes / commits nicely squashed. It now tells me that I could create a new PR with those changes. Which probably would have been OK if I did not open THIS PR in the first place. Wondering if there's any way out of this e.g. if I could revise or reset something. Please advise. Thanks |
Hey, I've tried to contact you on cisco jabber so I can walk you through this, but you were offline. Alternatively, I am happy to finish up the git stuff for you. |
Hi, Erik... Please go ahead and do the needful. I will be out of the office next week anyway. But I would be eager to learn how to actually tackle this. So, if you can give me an idea what I would have to do: I'd appreciate that. |
Sure. To repair your branch, it'll take this. However, Please read the rest of this before executing the statements below.
So the important thing is that you ensure you are using the right remotes.
Will show you the names. If you do not have a remote set up for us, do this:
Now You can verify which remote points at what by typing:
It will tell you what repository it refers to and a lot of other data. HTH! Please let me know if you are still lost. |
Closing this since we have pretty good developer documentation at https://github.com/contiv/netplugin/blob/master/docs/DevEnv.md @rschmied Feel free to reopen or file an issue if you see some info missing. -sukhesh |
Documented the steps needed to bring up a working development environment from scratch. Uses a VM on top of a VMware hypervisor (for nested virtualization support).