kitchen-ansible 0.42.4 → 0.42.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f073a5b00c60f49fedb6a1be8b99afe72ddac33e
4
- data.tar.gz: afc9f3c3879cdffcce90a8eb0dcb20dbcbcb6a1a
3
+ metadata.gz: 22310b6be0bb7881bc893656c98957e5a4b59cdd
4
+ data.tar.gz: 7bf5d14f666d032b49876950c281c81009b7fb22
5
5
  SHA512:
6
- metadata.gz: 6e630a787dbf900fa5b97792c3b4621da06516b78f71845ada2e60cedb5fe06e2a9739e4ceba632d969678ee07bb48b2785a31a56d62765cbce7f22f3f8e8b97
7
- data.tar.gz: 6fd08f662dda82a65e8db694a7c5be68aa1378cfbc6c6ec5ea94bb3cd00107aca5ddaaf967ede5b108ae8138e59f3d7a95753af261e5d88d4275edfa0912fce6
6
+ metadata.gz: 0fb02c340e124f287c4f9792dc89c269fe3f143fa6b7ce33aced0bf745b49ebcc09aef1f9896f75eb0f5d8097f198fa702ae1b7454edc34966b8df503fb247ad
7
+ data.tar.gz: 6e790d92d417f31732a06d6fb60c904f5b39eaa3a21fcaead32c46ff57a65c23c2edc03d73d7ab5741a15f436101b62ebbad87a0b498de8ee5666c2378726796
data/README.md CHANGED
@@ -68,6 +68,13 @@ In kitchen.yml set
68
68
 
69
69
  See example [https://github.com/neillturner/ansible_windows_repo](https://github.com/neillturner/ansible_windows_repo).
70
70
 
71
+ ## Using Roles from Ansible Galaxy
72
+
73
+ Roles can be used from the Ansible Galaxy using 2 methods:
74
+
75
+ 1. Specify a requirements.yml file in your ansible repository. For more details see: http://docs.ansible.com/ansible/galaxy.html
76
+
77
+ 2. Use librarian-ansible by creating an AnsibleFile in the top level of the repository and kitchen-puppet will automatically call librarian-ansible as part of the converge. For a description of setting up an AnsibleFile see: https://werner-dijkerman.nl/2015/08/15/using-librarian-ansible-to-install-ansible-roles-from-gitlab/
71
78
 
72
79
  ## Ruby install to run serverspec verify
73
80
 
@@ -33,7 +33,7 @@ EOF
33
33
  s.add_development_dependency 'rake'
34
34
  s.add_runtime_dependency 'librarian-ansible'
35
35
  if RUBY_VERSION >= '2.0'
36
- s.add_dependency 'net-ssh', '~> 3.0'
36
+ s.add_dependency 'net-ssh', '~> 3'
37
37
  else
38
38
  s.add_dependency 'net-ssh', '~> 2.9'
39
39
  end
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module Kitchen
3
3
  module Ansible
4
- VERSION = '0.42.4'
4
+ VERSION = '0.42.5'
5
5
  end
6
6
  end
@@ -17,8 +17,8 @@ python_sles_repo | http://download.opensuse.org/repositories /devel:/languages:/
17
17
  require_ansible_omnibus | false | Set if using omnibus ansible pip install
18
18
  ansible_omnibus_url | https://raw.githubusercontent.com /neillturner/omnibus-ansible /master/ansible_install.sh | omnibus ansible install location.
19
19
  ansible_omnibus_remote_path | "/opt/ansible" | Server Installation location of an omnibus ansible install.
20
- http_proxy | nil | use http proxy when installing puppet, packages and running puppet
21
- https_proxy | nil | use https proxy when installing puppet, packages and running puppet
20
+ http_proxy | nil | use http proxy when installing Ansible, packages and running Ansible
21
+ https_proxy | nil | use https proxy when installing Ansible, packages and running Ansible
22
22
  no_proxy | nil | list of URLs or IPs that should be excluded from proxying
23
23
  roles_path | roles | ansible repo roles directory
24
24
  group_vars_path | group_vars | ansible repo group_vars directory
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.42.4
4
+ version: 0.42.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neill Turner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-19 00:00:00.000000000 Z
11
+ date: 2016-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '3.0'
89
+ version: '3'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '3.0'
96
+ version: '3'
97
97
  description: |+
98
98
  == DESCRIPTION:
99
99