forked from sensu/sensu-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(sensuGH-884) Update acceptance testing
Add travis-ci tests for all supported versions of Linux that use docker nodesets Default PUPPET_GEM_VERSION to be Puppet 5 to avoid errors when not defined in environment
- Loading branch information
Showing
21 changed files
with
239 additions
and
148 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
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 was deleted.
Oops, something went wrong.
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,16 @@ | ||
HOSTS: | ||
amazonlinux-201703: | ||
roles: | ||
- agent | ||
platform: el-6-x86_64 | ||
hypervisor: docker | ||
image: amazonlinux:2017.03 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'yum install -y tar wget cronie git upstart' | ||
docker_container_name: 'sensu-amazonlinux-201703' | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
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,16 @@ | ||
HOSTS: | ||
centos-6-x64: | ||
roles: | ||
- agent | ||
platform: el-6-x86_64 | ||
hypervisor: docker | ||
image: centos:6 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'yum install -y tar wget cronie git' | ||
docker_container_name: 'sensu-el6' | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
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,10 @@ | ||
HOSTS: | ||
centos-6: | ||
roles: | ||
- agent | ||
platform: el-6-x86_64 | ||
box : centos/6 | ||
hypervisor : vagrant | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
HOSTS: | ||
centos-7-x64: | ||
roles: | ||
- agent | ||
platform: el-7-x86_64 | ||
hypervisor: docker | ||
image: centos:7 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/usr/sbin/init' | ||
docker_image_commands: | ||
- 'yum install -y tar wget cronie git iproute' | ||
docker_container_name: 'sensu-el7' | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
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,10 @@ | ||
HOSTS: | ||
centos-7: | ||
roles: | ||
- agent | ||
platform: el-7-x86_64 | ||
box : centos/7 | ||
hypervisor : vagrant | ||
CONFIG: | ||
log_level: verbose | ||
type: foss |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
HOSTS: | ||
debian-7: | ||
roles: | ||
- agent | ||
platform: debian-7-amd64 | ||
hypervisor: docker | ||
image: debian:7 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'apt-get install -y tar wget cron git net-tools locales' | ||
- 'rm -f /usr/sbin/policy-rc.d' | ||
- 'echo "LC_ALL=en_US.UTF-8" >> /etc/environment' | ||
- 'echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen' | ||
- 'echo "LANG=en_US.UTF-8" > /etc/locale.conf' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_container_name: 'sensu-debian7' | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
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,21 @@ | ||
HOSTS: | ||
debian-8: | ||
roles: | ||
- agent | ||
platform: debian-8-amd64 | ||
hypervisor: docker | ||
image: debian:8 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'apt-get install -y tar wget cron git net-tools locales' | ||
- 'rm -f /usr/sbin/policy-rc.d' | ||
- 'echo "LC_ALL=en_US.UTF-8" >> /etc/environment' | ||
- 'echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen' | ||
- 'echo "LANG=en_US.UTF-8" > /etc/locale.conf' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_container_name: 'sensu-debian8' | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
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,20 @@ | ||
HOSTS: | ||
debian-9: | ||
roles: | ||
- agent | ||
platform: debian-9-amd64 | ||
hypervisor: docker | ||
image: debian:9 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'apt-get install -y tar wget cron git net-tools systemd-sysv locales' | ||
- 'echo "LC_ALL=en_US.UTF-8" >> /etc/environment' | ||
- 'echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen' | ||
- 'echo "LANG=en_US.UTF-8" > /etc/locale.conf' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_container_name: 'sensu-debian9' | ||
CONFIG: | ||
log_level: debug | ||
type: foss |
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
Oops, something went wrong.