-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(main): release 6.2.1 --------- Signed-off-by: Corey Hemminger <[email protected]> Co-authored-by: Corey Hemminger <[email protected]>
- Loading branch information
1 parent
cbb2736
commit 8af385c
Showing
7 changed files
with
30 additions
and
40 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: bundler | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: bundler | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 |
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ default: true | |
MD004: false | ||
MD012: false | ||
MD013: false | ||
MD022: false | ||
MD024: false |
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,3 @@ | ||
{ | ||
".": "6.2.0" | ||
".": "6.2.1" | ||
} |
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
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
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,11 +1,11 @@ | ||
# <a name="title"></a> Kitchen::OpenStack: A Test Kitchen Driver for OpenStack | ||
# Kitchen::OpenStack | ||
|
||
[![Gem Version](https://img.shields.io/gem/v/kitchen-openstack.svg)][gem] | ||
![Gem Version](https://img.shields.io/gem/v/kitchen-openstack.svg) | ||
![CI](https://github.com/test-kitchen/kitchen-openstack/workflows/CI/badge.svg) | ||
|
||
A [Test Kitchen][kitchen_ci] Driver for [OpenStack][openstack_web]. | ||
A Test Kitchen Driver for OpenStack. | ||
|
||
This driver uses the [fog gem][fog_web] to provision and destroy nova instances. Use an OpenStack cloud for your infrastructure testing! | ||
This driver uses the fog gem to provision and destroy nova instances. Use an OpenStack cloud for your infrastructure testing! | ||
|
||
Shamelessly copied from [Fletcher Nichol](https://github.com/fnichol)'s awesome work on an [EC2 driver](https://github.com/test-kitchen/kitchen-ec2), and [Adam Leff](https://github.com/adamleff)'s amazing work on an [VRO driver](https://github.com/chef-partners/kitchen-vro). | ||
|
||
|
@@ -34,23 +34,20 @@ gem 'kitchen-openstack' | |
And then execute: | ||
|
||
```bash | ||
$ bundle | ||
bundle | ||
``` | ||
|
||
Or install it yourself as: | ||
|
||
```bash | ||
$ gem install kitchen-openstack | ||
gem install kitchen-openstack | ||
``` | ||
|
||
## Usage | ||
|
||
See https://kitchen.ci/docs/drivers/openstack/ for documentation. | ||
See <https://kitchen.ci/docs/drivers/openstack/> for documentation. | ||
|
||
## <a name="development"></a> Development | ||
|
||
* Source hosted at [GitHub][repo] | ||
* Report issues/questions/feature requests on [GitHub Issues][issues] | ||
## Development | ||
|
||
Pull requests are very welcome! Make sure your patches are well tested. | ||
Ideally create a topic branch for every separate change you make. For | ||
|
@@ -63,26 +60,10 @@ example: | |
5. Push to the branch (`git push origin my-new-feature`) | ||
6. Create new Pull Request | ||
|
||
## <a name="authors"></a> Authors | ||
|
||
Created by [Jonathan Hartman][author] (<[email protected]>) | ||
and maintained by [JJ Asghar][maintainer] (<[email protected]>) | ||
|
||
## <a name="license"></a> License | ||
|
||
Apache 2.0 (see [LICENSE][license]) | ||
|
||
## Authors | ||
|
||
[gem]: https://rubygems.org/gems/kitchen-openstack | ||
Created by Jonathan Hartman | ||
|
||
[author]: https://github.com/RoboticCheese | ||
[maintainer]: https://github.com/jjasghar | ||
[issues]: https://github.com/test-kitchen/kitchen-openstack/issues | ||
[license]: https://github.com/test-kitchen/kitchen-openstack/blob/master/LICENSE.txt | ||
[repo]: https://github.com/test-kitchen/kitchen-openstack | ||
[driver_usage]: https://github.com/test-kitchen/kitchen-openstack | ||
[chef_omnibus_dl]: https://downloads.chef.io/tools/infra-client | ||
[kitchen_ci]: http://kitchen.ci | ||
## License | ||
|
||
[openstack_web]: http://www.openstack.org | ||
[fog_web]: http://fog.io | ||
Apache 2.0 (see LICENSE.txt file) |
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 |
---|---|---|
|
@@ -23,6 +23,6 @@ module Kitchen | |
# | ||
# @author Jonathan Hartman <[email protected]> | ||
module Driver | ||
OPENSTACK_VERSION = "6.2.0" | ||
OPENSTACK_VERSION = "6.2.1" | ||
end | ||
end |