-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
provider/openstack Add Distributed router support #4878
Conversation
Hi @Fodoj, please can you squash your commits on this one - this will help keep the git commit log clean thanks Paul |
@Fodoj Thanks for this! Just a heads up that I'm currently traveling for work, so I might not get a chance to review this for a few days. |
a4457c4
to
df4b908
Compare
@stack72 done, thanks |
Looks like rackspace/gophercloud#525 was merged today! Can you trigger the Travis tests to run? Looks good to merge after that. 😄 Edit: err... looks like something else might need to be done in order to get the new Gophercloud merges in, per #4909 |
@jtopjian it's about pinning gophercloud version, right? |
Right. You'll have to use godep to manage the versions, but I haven't been able to figure out how to do it cleanly. It looks like $ godep update github.com/rackspace/gophercloud Just clobbers @phinze @radeksimko I know you guys said you'll be putting docs together shortly. Any quick pointers on the above in the meantime? |
Hi @jtopjian - sorry about the delay on those docs. In the meantime, I believe the target of
|
@phinze No problem at all! I totally understand this is a large change that was just implemented :) I tried Is this intended behavior? The Godep README states that test files are not tracked, but they currently exist in |
@jtopjian interesting! The original contents of vendor were inadvertently captured with an older version of |
@phinze sounds like an awesome plan! Thank you! |
If I run |
@Fodoj Here's what I ended up doing for #5131: rm -rf ~/go/src/github.com/hashicorp/terraform
go get github.com/hashicorp/terraform
cd ~/go/src/github.com/hashicorp/terraform
git remote add jtopjian ...
git fetch jtopjian
git checkout --track jtopjian/...
git rebase -i master
export GO15VENDOREXPERIMENT=1
godep update github.com/rackspace/gophercloud
git status
git add .
git commit -m "provider/openstack: Updating Gophercloud Dependency" I have no idea how correct that is... but I think it worked :) |
@jtopjian ping |
This looks good to me! Did you end up using the steps I listed? I'd like @phinze to do a quick review of the Godeps stuff since this will be the first for an OpenStack-related commit. |
@jtopjian yes, your steps were mostly correct, though I also had to run |
Godeps diff LGTM! |
provider/openstack Add Distributed router support
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Please note that this PR depends on this rackspace/gophercloud#525 to be merged.