-
Notifications
You must be signed in to change notification settings - Fork 59
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
support vagrant AWS provider #39
Conversation
Signed-off-by: Maria Ntalla <[email protected]>
super cool! cookbook changes look fine, i'm happy/surprised you were able to make it work in this context!? I think this would be a useful addition, be happy to see it merged. I'd like to give it a go - can you help me with some of the |
Cool, that's what I was trying to in my repo [1]. And this looks better than mine. I'll take a time to try with this. Just a small question, once I was trying, I hit a aws provider bug that we have to remove .vagrant/aws/synced_folders for each time of provision. Has it already resolved? 1: https://github.com/bloodeagle40234/vagrant-swift-all-in-one/tree/aws |
@clayg It was actually pretty easy to do because of your use of the chef solo provisioner on top of a bare ubuntu box for the virtualbox provider. We added AWS provider boilerplate and let the cookbooks do their thing :) You should be able to get it up and running with the following:
Let me know how you get on! @bloodeagle40234 we haven't noticed that problem, we have run |
ok, I got this working with the following in my
I installed the plugin with:
And launched the instance with:
I'm running vagrant Some things I'd like to add:
I think I can cram most of it into One thing I'm a little more curious about is the mis-match between |
Yes, it is a little weird that we create the vagrant user rather than parameterising the user, that is something that would be nice to add at a later date. All those additions sound reasonable! |
Cool, thanks @clayg ! |
Hi,
We've just started using this to provision swift hosts for testing a backups tool. We've got it up and running on AWS, using an ubuntu base image and your existing chef cookbooks.
The only cookbook change we had to make was adding the vagrant user if it does not already exist, to support use of community AMIs that were not explicitly produced for use as a vagrant box (such as the official Canonical Ubuntu 14.04 image).
cc @mariantalla