A Test Kitchen Provisioner for Ansible.
The provisioner works by passing the Ansible repository based on attributes in .kitchen.yml
& calling ansible-playbook
.
It installs Ansible on the server and runs ansible-playbook
using host localhost.
It has been tested against the Ubuntu 12.04/14.04/16.04, Centos 6/7 and Debian 6/7/8 boxes running in vagrant/virtualbox.
- Test Kitchen.
- a driver box without a Chef installation so Ansible can be installed.
-
install the latest Ruby on your workstations (for windows see https://rubyinstaller.org/downloads/)
-
If using Ruby version less than 2.3 first install earlier version of test-kitchen
gem install test-kitchen -v 1.16.0
- Install the
kitchen-ansible
gem in your system, along with kitchen-vagrant or kitchen-docker or any other suitable driver:
gem install kitchen-ansible
gem install kitchen-vagrant
- https://blog.superk.org/home/ansible-role-development
- http://razorconsulting.com.au/integration-testing-using-ansible-and-test-kitchen.html
- https://github.com/MattHodge/ansible-testkitchen-windows
- https://readme.fr/continuous-integration-for-ansible/
- https://dantehranian.wordpress.com/2015/06/18/testing-ansible-roles-with-test-kitchen
- http://www.slideshare.net/MartinEtmajer/testing-ansible-roles-with-test-kitchen-serverspec-and-rspec-48185017
- http://blog.el-chavez.me/2016/02/16/ansible-galaxy-test-kitchen
- https://werner-dijkerman.nl/2015/08/20/using-test-kitchen-with-docker-and-serverspec-to-test-ansible-roles
- https://books.google.co.uk/books?id=D-wmDQAAQBAJ&pg=PA129&lpg
Based on the Tomcat Standalone example:
---
driver:
name: vagrant
provisioner:
name: ansible_playbook
roles_path: roles
hosts: tomcat-servers
require_ansible_repo: true
ansible_verbose: true
ansible_version: latest
require_chef_for_busser: false
additional_ssh_private_keys:
- /mykey/id_rsa
platforms:
- name: nocm_centos-6.5
driver_plugin: vagrant
driver_config:
box: nocm_centos-6.5
box_url: http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
network:
- ['forwarded_port', {guest: 8080, host: 8080}]
- ['private_network', {ip: '192.168.33.11'}]
See example https://github.com/neillturner/ansible_repo
Windows is supported by creating a linux server to run Ansible with software required to support winrm. Then the winrm connection is used to configure the windows server.
In .kitchen.yml
set:
ansible_connection: winrm
require_windows_support: true
require_chef_for_busser: false
See the Ansible Windows repo example.
Roles can be used from the Ansible Galaxy using two methods:
-
Specify a
requirements.yml
file in your Ansible repository. For more details see here. -
Use
librarian-ansible
by creating anAnsiblefile
in the top level of the repository andkitchen-ansible
will automatically calllibrarian-ansible
during convergence. For a description of setting up anAnsiblefile
see here.
To use a single ~/.kitchen/config.yml file with multiple reposities by setting the WORKSPACE environment variable:
role_path: <%= ENV['WORKSPACE'] %>/roles
You can easily skip previous instructions and jump directly to the broken statement you just fixed by passing an environment variable. Add the following to your .kitchen.yml
:
provisioner:
name: ansible_playbook
ansible_extra_flags: <%= ENV['ANSIBLE_EXTRA_FLAGS'] %>
Then run:
$ ANSIBLE_EXTRA_FLAGS='--start-at-task="myrole | name of last working instruction"' kitchen converge
You save a lot of time not running working instructions.
By default test-kitchen installs Chef to get a Ruby version suitable to run Serverspec in the verify
step.
kitchen-verifier-serverspec installs its own ruby version so chef or ruby is not required to verify with serverspec :
require_chef_for_busser: false
And set the verifier section:
verifier:
name: serverspec
sudo_path: true
suites:
- name: ansible
driver_config:
hostname: '54.229.34.169'
verifier:
patterns:
- roles/tomcat/spec/tomcat_spec.rb
bundler_path: '/usr/local/bin'
rspec_path: '/usr/local/bin'
env_vars:
TARGET_HOST: 54.229.104.40
LOGIN_USER: centos
SUDO: true
SSH_KEY: spec/test.pem
Please see the Provisioner Options for a complete listing.
By using kitchen-verifier-serverspec and the Runner ansiblespec_runner tests can be run against multiple servers with multiple roles in the ansiblespec format.
Serverspec uses ssh to communicate with the server to be tested and reads the Ansible playbook and inventory files to determine the hosts to test and the roles for each host.
See example https://github.com/neillturner/ansible_ansiblespec_repo
See ansible-sample-tdd.
In the Ansible repository specify:
- spec files with the roles.
- spec_helper in the spec folder (with code as below).
.
+-- roles
¦ +-- mariadb
¦ ¦ +-- spec
¦ ¦ ¦ +-- mariadb_spec.rb
¦ ¦ +-- tasks
¦ ¦ ¦ +-- main.yml
¦ ¦ +-- templates
¦ ¦ +-- mariadb.repo
¦ +-- nginx
¦ +-- handlers
¦ ¦ +-- main.yml
¦ +-- spec
¦ ¦ +-- nginx_spec.rb
¦ +-- tasks
¦ ¦ +-- main.yml
¦ +-- templates
¦ ¦ +-- nginx.repo
¦ +-- vars
¦ +-- main.yml
+-- spec
+-- spec_helper.rb
+-- my_private_key.pem
require 'rubygems'
require 'bundler/setup'
require 'serverspec'
require 'pathname'
require 'net/ssh'
RSpec.configure do |config|
set :host, ENV['TARGET_HOST']
# ssh options at http://net-ssh.github.io/ssh/v1/chapter-2.html
# ssh via password
set :ssh_options, :user => ENV['LOGIN_USER'], :paranoid => false, :verbose => :error, :password => ENV['LOGIN_PASSWORD'] if ENV['LOGIN_PASSWORD']
# ssh via ssh key
set :ssh_options, :user => ENV['LOGIN_USER'], :paranoid => false, :verbose => :error, :host_key => 'ssh-rsa', :keys => [ ENV['SSH_KEY'] ] if ENV['SSH_KEY']
set :backend, :ssh
set :request_pty, true
end
See kitchen-verifier-serverspec.
This could be adapted to use alternative virtualization/cloud providers such as Openstack/AWS/VMware Fusion according to whatever is supported by Vagrant.
platforms:
- name: ubuntu-12.04
driver_config:
provider: aws
box: my_base_box
# username is based on what is configured in your box/ami
username: ubuntu
customize:
access_key_id: 'AKKJHG659868LHGLH'
secret_access_key: 'G8t7o+6HLG876JGF/58'
ami: ami-7865ab765d
instance_type: t2.micro
# more customisation can go here, based on what the vagrant provider supports
#security-groups: []
- The
default
in all of the above is the name of the test suite defined in thesuites
section of your.kitchen.yml
, so if you have more than one suite of tests or change the name, you'll need to adapt the example accordingly. - Serverspec test files must be named
_spec.rb
- Since I'm using Vagrant, my
box
definitions refer to Vagrant boxes, either standard, published boxes available from Atlas or custom-created boxes (perhaps using Packer and bento, in which case you'll need to provide the URL inbox_url
.