-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* enable travis kitchen * typo fix .kitchen.dokken.yml
- Loading branch information
Showing
3 changed files
with
87 additions
and
18 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,66 @@ | ||
# settings: | ||
# parallel: true | ||
|
||
driver: | ||
name: dokken | ||
privileged: true | ||
chef_image: chef/chef | ||
chef_version: current | ||
|
||
transport: | ||
name: dokken | ||
|
||
provisioner: | ||
name: dokken | ||
|
||
platforms: | ||
- name: ubuntu-14.04 | ||
driver: | ||
image: ubuntu:14.04 | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
- RUN /usr/bin/apt-get install -y net-tools apt-transport-https initscripts | ||
|
||
- name: centos-6.8 | ||
driver: | ||
image: centos:6.8 | ||
platform: rhel | ||
intermediate_instructions: | ||
- RUN yum install -y net-tools initscripts | ||
|
||
- name: centos-7 | ||
driver: | ||
image: centos:7 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
platform: rhel | ||
intermediate_instructions: | ||
- RUN yum install -y net-tools initscripts systemd-sysv | ||
|
||
suites: | ||
- name: default | ||
run_list: | ||
- recipe[filebeat::default] | ||
attributes: | ||
filebeat: | ||
prospectors: | ||
system_logs: | ||
filebeat: | ||
prospectors: | ||
- paths: | ||
- /var/log/messages | ||
- /var/log/syslog | ||
type: log | ||
fields: | ||
type: system_logs | ||
- paths: | ||
- /var/log/*.log | ||
type: log | ||
fields: | ||
type: undefined | ||
exclude_files: | ||
- /var/log/messages | ||
- /var/log/syslog | ||
config: | ||
output: | ||
elasticsearch: | ||
hosts: ["127.0.0.1:9200"] |
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 |
---|---|---|
@@ -1,15 +1,5 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rake' | ||
gem 'berkshelf' | ||
gem 'chefspec' | ||
gem 'foodcritic' | ||
gem 'rubocop' | ||
gem 'kitchen-vagrant' | ||
gem 'test-kitchen' | ||
gem 'winrm' | ||
gem 'winrm-fs' | ||
|
||
group :solaris do | ||
gem 'kitchen-zone', :git => 'https://github.com/criticalmass/kitchen-zone.git' | ||
end |