vagrant-openstack-provider icon indicating copy to clipboard operation
vagrant-openstack-provider copied to clipboard

Use Vagrant to manage OpenStack Cloud instances.

Results 81 vagrant-openstack-provider issues
Sort by recently updated
recently updated
newest added

``` 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

feature
heat

``` ruby os.stacks = [{ name: 'mystack', template_url: 'http://test.heat', }] ``` It should be forbidden to set `template` and `template_url` at the same time

feature
heat

``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.yml', environment: '/path/to/my/environment.yml', }] ```

feature
heat

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...

bug

``` 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',...

feature
quickwin
heat

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....

enhancement

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...

bug

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',...

high level feature

either add it the `vagrant status` command or maybe `vagrant openstack status ` For instance, we might need the floating ip of a started instance

enhancement