Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/test-kitchen/kitchen-openstack
OpenStack Compute driver for Test-Kitchen
https://github.com/test-kitchen/kitchen-openstack
hacktoberfest managed-by-terraform ruby ruby-gem test-kitchen testing
Last synced: 2 days ago
JSON representation
OpenStack Compute driver for Test-Kitchen
- Host: GitHub
- URL: https://github.com/test-kitchen/kitchen-openstack
- Owner: test-kitchen
- License: other
- Created: 2013-03-06T21:53:08.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T05:52:30.000Z (about 1 year ago)
- Last Synced: 2024-04-14T02:17:57.593Z (8 months ago)
- Topics: hacktoberfest, managed-by-terraform, ruby, ruby-gem, test-kitchen, testing
- Language: Ruby
- Homepage:
- Size: 1.04 MB
- Stars: 55
- Watchers: 23
- Forks: 76
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Kitchen::OpenStack
![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 Driver for OpenStack.
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).
## Status
This software project is no longer under active development as it has no active maintainers. The software may continue to work for some or all use cases, but issues filed in GitHub will most likely not be triaged. If a new maintainer is interested in working on this project please come chat with us in #test-kitchen on Chef Community Slack.
## Requirements
There are **no** external system requirements for this driver. However you will need access to an OpenStack cloud.
## Installation and Setup
This plugin ships out of the box with Chef Workstation, which is the easiest way to make sure you always have the latest testing dependencies in a single package.
[Download Chef Workstation](https://downloads.chef.io/tools/workstation) to get started
### Manual Installation
Add this line to your application's Gemfile:
```ruby
gem 'kitchen-openstack'
```And then execute:
```bash
bundle
```Or install it yourself as:
```bash
gem install kitchen-openstack
```## Usage
See for documentation.
## 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
example:1. Fork the repo
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Run the tests and rubocop, `bundle exec rake spec` and `bundle exec rake rubocop`
4. Commit your changes (`git commit -am 'Added some feature'`)
5. Push to the branch (`git push origin my-new-feature`)
6. Create new Pull Request## Authors
Created by Jonathan Hartman
## License
Apache 2.0 (see LICENSE.txt file)