An OpenStack Nova driver for Test Kitchen 1.0!
Shamelessly copied from Fletcher Nichol's awesome work on an EC2 driver, and Adam Leff's amazing work on an VRO driver.
Add this line to your application's Gemfile:
gem 'kitchen-openstack'
And then execute:
$ bundle
Or install it yourself as:
$ gem install kitchen-openstack
Or if using chefdk install with:
$ chef gem install kitchen-openstack
Provide, at a minimum, the required driver options in your .kitchen.yml
file:
driver:
name: openstack
openstack_username: [YOUR OPENSTACK USERNAME]
openstack_api_key: [YOUR OPENSTACK API KEY] # AKA your OPENSTACK PASSWORD
openstack_auth_url: [YOUR OPENSTACK AUTH URL]
require_chef_omnibus: [e.g. 'true' or a version number if you need Chef]
image_ref: [SERVER IMAGE ID]
flavor_ref: [SERVER FLAVOR ID]
The image_ref
and flavor_ref
options can be specified as an exact id,
an exact name, or as a regular expression matching the name of the image or flavor.
Test Kitchen 1.4 supports multiple transports, and transports can be configure globally:
transport:
username: ubuntu
password: mysecretpassword
... or per-platform:
platforms:
name: ubuntu-14.04
transport:
password: myrootpassword
name: windows-2012r2
password: myadministratorpassword
By default, a unique server name will be generated and the current user's SSH key will be used (with an RSA key taking precedence over a DSA), though that behavior can be overridden with additional options:
server_name: [A UNIQUE SERVER NAME]
server_name_prefix: [STATIC PREFIX FOR RANDOM SERVER NAME]
private_key_path: [PATH TO YOUR PRIVATE SSH KEY]
public_key_path: [PATH TO YOUR SSH PUBLIC KEY]
username: [SSH USER]
password: [SSH PASSWORD]
port: [SSH PORT]
key_name: [SSH KEY NAME]
openstack_tenant: [YOUR OPENSTACK TENANT NAME]
openstack_region: [A VALID OPENSTACK REGION]
availability_zone: [AN OPENSTACK AVAILABILITY ZONE]
openstack_service_name: [YOUR OPENSTACK COMPUTE SERVICE NAME]
openstack_network_name: [YOUR OPENSTACK NETWORK NAME USED TO CONNECT]
security_groups:
- [A LIST OF...]
- [...SECURITY GROUPS TO JOIN]
network_ref:
- [OPENSTACK NETWORK NAMES OR...]
- [...ID TO CREATE INSTANCE WITH]
no_ssh_tcp_check: [DEFAULTS TO false, SKIPS TCP CHECK WHEN true]
no_ssh_tcp_check_sleep: [NUM OF SECONDS TO SLEEP IF no_ssh_tcp_check IS SET]
block_device_mapping:
make_volume: [DEFAULTS TO false, MAKES A NEW VOLUME WHEN true]
snapshot_id: [WHEN SET WILL MAKE VOLUME FROM VOLUME SNAPSHOT]
volume_id: [WILL ATTACH VOLUME WHEN SET]
volume_size: [THE SIZE OF THE VOLUME TO BE ATTACHED/MADE]
device_name: [SET TO vda UNLESS YOU KNOW WHAT YOU ARE DOING]
availability_zone: [THE BLOCK STORAGE AVAILABILITY ZONE, DEFAULTS TO nova]
volume_type: [THE VOLUME TYPE, THIS IS OPTIONAL]
delete_on_termination: [WILL DELETE VOLUME ON INSTANCE DESTROY WHEN true, OTHERWISE SET TO false]
winrm_wait: [DEFAULTS TO 0, BUT THIS HELPS CONFIRM WINRM IS IN A GOOD STATE BEFORE TRYING TO CONNECT]
If a server_name_prefix
is specified then this prefix will be used when
generating random names of the form <NAME PREFIX>-<RANDOM STRING>
e.g.
myproject-asdfghjk
. If both server_name_prefix
and server_name
are
specified then the server_name
takes precedence.
winrm_wait
is a workaround to deal with how WinRM comes up during machine
creation. With cloud-init
running on most OpenStack instances having this
wait makes sure that the machine is in a good state to work with.
If a key_name
is provided it will be used instead of any
public_key_path
that is specified.
If a key_name
is provided without any private_key_path
, unexpected
behavior may result if your local RSA/DSA private key doesn't match that
OpenStack key. If you do key injection via cloud-init
like this issue:
#77 the best
way is to make a "dummy-key."
A specific floating_ip
or the ID of a floating_ip_pool
can be provided to
bind a floating IP to the node. Any floating IP will be the IP used for
Test Kitchen's SSH calls to the node.
floating_ip: [A SPECIFIC FLOATING IP TO ASSIGN]
floating_ip_pool: [AN OPENSTACK POOL NAME TO ASSIGN THE NEXT IP FROM]
In some complex network scenarios you can have several IP addresses designated
as public or private. Use public_ip_order
or private_ip_order
to control
which one to use for further SSH connection. Default is 0 (first one)
For example if you have openstack istance that has network with several IPs assigned like
+--------------------------------------+------------+--------+------------+-------------+----------------------------------+
| ID | Name | Status | Task State | Power State | Networks |
+--------------------------------------+------------+--------+------------+-------------+----------------------------------+
| 31c98de4-026f-4d12-b03f-a8a35c6e730b | kitchen | ACTIVE | None | Running | test=10.0.0.1, 10.0.1.1 |
to use second 10.0.1.1
IP address you need to specify
private_ip_order: 1
assuming that test network is configured as private.
The network_ref
option can be specified as an exact id, an exact name,
or as a regular expression matching the name of the network. You can pass one
network_ref: MYNET1
or many networks
network_ref:
- MYNET1
- MYNET2
The openstack_network_name
is used to select IP address for SSH connection.
It's recommended to specify this option in case of multiple networks used for
instance to provide more control over network connectivity.
Please note that network_ref
relies on Network Services (Fog::Network
) and
it can be unavailable in your OpenStack installation.
disable_ssl_validation: true
Only disable SSL cert validation if you absolutely know what you are doing, but are stuck with an OpenStack deployment without valid SSL certs.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Run style checks and RSpec tests (
bundle exec rake
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request