vagrant-openstack-provider
vagrant-openstack-provider copied to clipboard
Use Vagrant to manage OpenStack Cloud instances.
``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.yml', environment_url: 'http://environment.heat', }] ``` `environment` and `environment_url` shouldn't be specified at the same time See #176
``` ruby os.stacks = [{ name: 'mystack', template_url: 'http://test.heat', }] ``` It should be forbidden to set `template` and `template_url` at the same time
``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.yml', environment: '/path/to/my/environment.yml', }] ```
In the last Paris Summit, it was suggested that this project was migrated to Openstack Infra, to get all the code-review and CI goodness they provide. If you still have...
when running a custom command in a folder with no Vagrantfile ``` > vagrant openstack image-list An unknow error happened in Vagrant OpenStack provider To easily debug what happened, we...
``` ruby os.stacks = [{ name: 'mystack', template: { heat_template_version: '2013-05-23', description: 'Simple template to deploy a single compute instance', resources: { my_instance: { type: 'OS::Nova::Server', properties: { key_name: 'julien-mac',...
When `vagrant up` command fails it is often interesting to have a look at the OpenStack instance startup log to see if the error comes from Vagrant or from OpenStack....
When allocating floating ips in parallel in the same project it can happen that an already used floating ip be assigned to a VM. To prevent this problem we should...
After many requests, I think we need to add heat support to the provider. We could add in the configuration the following attributes ``` ruby os.stacks = [{ name: 'mystack',...
either add it the `vagrant status` command or maybe `vagrant openstack status ` For instance, we might need the floating ip of a started instance