kitchen-ansible 0.0.25 → 0.0.26
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +222 -222
- data/kitchen-ansible.gemspec +35 -35
- data/lib/kitchen-ansible/version.rb +5 -5
- data/lib/kitchen/provisioner/ansible/config.rb +162 -161
- data/lib/kitchen/provisioner/ansible/librarian.rb +83 -83
- data/lib/kitchen/provisioner/ansible_playbook.rb +821 -808
- data/provisioner_options.md +2 -0
- metadata +3 -3
data/provisioner_options.md
CHANGED
@@ -17,6 +17,7 @@ ansible_omnibus_url | https://raw.githubusercontent.com /neillturner/omnibus-ans
|
|
17
17
|
ansible_omnibus_remote_path | "/opt/ansible" | Server Installation location of an omnibus ansible install.
|
18
18
|
http_proxy | nil | use http proxy when installing puppet, packages and running puppet
|
19
19
|
https_proxy | nil | use https proxy when installing puppet, packages and running puppet
|
20
|
+
no_proxy | nil | list of URLs or IPs that should be excluded from proxying
|
20
21
|
roles_path | roles | ansible repo roles directory
|
21
22
|
group_vars_path | group_vars | ansible repo group_vars directory
|
22
23
|
host_vars_path | host_vars | ansible repo hosts directory
|
@@ -36,6 +37,7 @@ requirements_path | | Path to ansible-galaxy requirements
|
|
36
37
|
ansible_vault_password_file| | Path of Ansible Vault Password File
|
37
38
|
ansible_connection | local | Connection for Hosts and Groups
|
38
39
|
ansible_inventory_file | hosts | Custom inventory file
|
40
|
+
ansible_extra_flags | '' | Additional options to pass to `ansible-playbook` -- e.g.: `'--skip-tags=redis'`
|
39
41
|
require_ruby_for_busser|false|install ruby to run busser for tests
|
40
42
|
require_chef_for_busser|true|install chef to run busser for tests. NOTE: kitchen 1.4 only requires ruby to run busser so this is not required.
|
41
43
|
chef_bootstrap_url |https://www.getchef.com /chef/install.sh| the chef install
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-ansible
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Neill Turner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
122
|
version: '0'
|
123
123
|
requirements: []
|
124
124
|
rubyforge_project: "[none]"
|
125
|
-
rubygems_version: 2.
|
125
|
+
rubygems_version: 2.2.2
|
126
126
|
signing_key:
|
127
127
|
specification_version: 4
|
128
128
|
summary: ansible provisioner for test-kitchen
|