-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
driver: | ||
name: docker | ||
username: vagrant | ||
provision_command: | ||
- usermod -p $(echo vagrant | openssl passwd -1 -stdin) vagrant | ||
- locale-gen en_US.UTF-8 | ||
- dpkg-reconfigure locales | ||
|
||
provisioner: | ||
name: nodes | ||
roles_path: test/fixtures/roles | ||
require_chef_omnibus: latest | ||
|
||
platforms: | ||
- name: ubuntu-14.04 | ||
|
||
suites: | ||
- name: node1 | ||
run_list: | ||
- role[test_role] | ||
- recipe[node-tests::node1] | ||
attributes: | ||
consul: | ||
config: | ||
bootstrap_expect: 2 | ||
server: true | ||
|
||
- name: node2 | ||
run_list: | ||
- recipe[node-tests::node2] | ||
attributes: | ||
consul: | ||
config: | ||
bootstrap_expect: 2 | ||
server: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec| | |
|
||
spec.add_dependency 'net-ping' | ||
spec.add_dependency 'win32-security' | ||
spec.add_dependency 'test-kitchen', '~> 1.4' | ||
spec.add_dependency 'test-kitchen', '~> 1.13' | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mwrock
Author
Owner
|
||
|
||
spec.add_development_dependency 'bundler', '~> 1.3' | ||
spec.add_development_dependency 'fakefs', '~> 0.4' | ||
|
@mwrock could you please elaborate why the version constraint for
test-kitchen
has been bumped here?It makes
kitchen-nodes
not working with older Kitchen versions (see #29 (comment))