-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add kitchen.dokken.yml for travis integration tests.
- Loading branch information
John Bellone
committed
Jul 19, 2016
1 parent
5318e85
commit 2d4f295
Showing
1 changed file
with
52 additions
and
0 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,52 @@ | ||
--- | ||
driver: | ||
name: dokken | ||
chef_version: latest | ||
privileged: true | ||
|
||
transport: | ||
name: dokken | ||
|
||
provisioner: | ||
name: dokken | ||
|
||
platforms: | ||
- name: centos-7 | ||
named_run_list: rhel | ||
driver: | ||
image: centos:7 | ||
platform: rhel | ||
pid_one_command: /usr/lib/systemd/systemd | ||
intermediate_instructions: | ||
- RUN yum clean all | ||
- RUN yum -y install net-tools lsof | ||
- name: centos-6 | ||
named_run_list: rhel | ||
driver: | ||
image: centos:6 | ||
platform: rhel | ||
pid_one_command: /sbin/init | ||
intermediate_instructions: | ||
- RUN yum -y install which initscripts | ||
- name: ubuntu-16.04 | ||
named_run_list: debian | ||
driver: | ||
image: ubuntu:16.04 | ||
pid_one_command: /sbin/init | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
- RUN /usr/bin/apt-get install apt-transport-https net-tools -y | ||
|
||
suites: | ||
- name: default | ||
provisioner: | ||
policyfile: test/fixtures/policies/default.rb | ||
attributes: | ||
consul: | ||
config: &default-config | ||
owner: root | ||
group: consul | ||
bootstrap: true | ||
server: true | ||
datacenter: FortMeade | ||
encrypt: CGXC2NsXW4AvuB4h5ODYzQ== |