forked from mitchellh/vagrant-rackspace
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also adds Authors file and change log.
- Loading branch information
Hendrik Volkmer
committed
Sep 25, 2013
1 parent
73aa247
commit ad96fbb
Showing
3 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Brian Miller | ||
Corey Stubbs | ||
Hendrik Volkmer | ||
Jasper Capel | ||
Joe Topjian | ||
Jon Burgess | ||
Mathieu Mitchell | ||
Mitchell Hashimoto | ||
Stephan Renatus | ||
Thomas Kadauke | ||
Xavier Antoviaque |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,50 @@ | ||
# 0.1.0 (March 14, 2013) | ||
# Changelog for vagrant-openstack-plugin | ||
|
||
* Initial release. | ||
## 0.3.0 (September 25, 2013) | ||
|
||
- Adds support to determine IP address to use | ||
- Region Support | ||
- Enabled controlling multiple VMs in parallel | ||
- Honor disabling of synced folders | ||
- Adds `availability_zone` option to specify instance zone | ||
- Added --delete to rsync command | ||
- Call SetHostname action from Vagrant core in up phase | ||
- Handled not having the box and providing it via a box_url. | ||
- Allowed vagrant ssh -c 'command' | ||
- Adds tenant to network request | ||
- Improved documentation | ||
|
||
## 0.2.2 (May 30, 2013) | ||
|
||
- Also ignore HOSTUNREACH errors when first trying to connect to newly created VM | ||
|
||
## 0.2.1 (May 29, 2013) | ||
|
||
- Fix passing user data to server on create | ||
- Floating IP Capability | ||
- Added ability to configure scheduler hints | ||
- Update doc (network config in fact has higher precedence than address_id) | ||
- 'address_id' now defaults to 'public', to reduce number of cases in read_ssh_info | ||
- Introduced 'address_id' config, which has a higher order of precedence than 'network' | ||
|
||
## 0.2.0 (May 2, 2013) | ||
|
||
- Added docs | ||
- Removed metadata validation and bumped version | ||
- Tenant and security groups are now configurable | ||
|
||
## 0.1.3 (April 26, 2013) | ||
|
||
- Added the ability to pass metadata keypairs to instances | ||
- Added support for nics configurations to allow for selection of a specific network on creation | ||
|
||
## 0.1.2 (April 26, 2013) | ||
|
||
- Added the option of passing user data to VMs | ||
- Enabled `vagrant provision` in this provider | ||
- Made finding IP address more stable | ||
- Doc improvements and minor fixes | ||
|
||
## 0.1.0 (March 14, 2013) | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module VagrantPlugins | ||
module OpenStack | ||
VERSION = "0.2.2" | ||
VERSION = "0.3.0" | ||
end | ||
end |