-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add acceptance tests (docker) nodes for supported debian flavors
- Loading branch information
Showing
5 changed files
with
96 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,16 @@ | ||
--- | ||
HOSTS: | ||
debian-8-x64: | ||
platform: debian-8-amd64 | ||
hypervisor: docker | ||
image: debian:8 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get update && apt-get install -y net-tools wget locales strace lsof && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen' | ||
- 'rm -rf /usr/sbin/policy-rc.d' | ||
- 'systemctl mask -- tmp.mount etc-hostname.mount etc-hosts.mount etc-resolv.conf.mount -.mount swap.target dev-mqueue.mount cgproxy.service [email protected] getty-static.service systemd-udev-trigger.service systemd-tmpfiles-setup-dev.service systemd-remount-fs.service systemd-ask-password-wall.path systemd-logind.service && systemctl set-default multi-user.target || true' | ||
|
||
CONFIG: | ||
trace_limit: 200 | ||
type: aio |
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: | ||
debian-9-x64: | ||
platform: debian-9-amd64 | ||
hypervisor: docker | ||
image: debian:stretch | ||
docker_preserve_image: true | ||
docker_cmd: '["/lib/systemd/systemd"]' | ||
docker_image_commands: | ||
- 'apt-get update && apt-get install -y systemd cron net-tools wget locales strace lsof && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen' | ||
- 'rm -rf /usr/sbin/policy-rc.d' | ||
- 'systemctl mask -- tmp.mount etc-hostname.mount etc-hosts.mount etc-resolv.conf.mount -.mount swap.target dev-mqueue.mount cgproxy.service [email protected] getty-static.service systemd-udev-trigger.service systemd-tmpfiles-setup-dev.service systemd-remount-fs.service systemd-ask-password-wall.path systemd-logind.service && systemctl set-default multi-user.target || true' | ||
|
||
CONFIG: | ||
trace_limit: 200 | ||
type: aio |
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,32 @@ | ||
--- | ||
HOSTS: | ||
debian-9-x64: | ||
platform: debian-9-amd64 | ||
hypervisor: docker | ||
image: debian:stretch | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get update && apt-get install -y sysvinit-core cron psmisc procps net-tools wget locales strace lsof && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen' | ||
- 'apt-get remove -y --purge --auto-remove systemd' | ||
- 'update-rc.d -f hwclock.sh remove || true' | ||
- 'update-rc.d -f mountall-bootclean.sh remove || true' | ||
- 'update-rc.d -f mountall.sh remove || true' | ||
- 'update-rc.d -f checkfs.sh remove || true' | ||
- 'update-rc.d -f checkroot.sh remove || true' | ||
- 'update-rc.d -f motd remove || true' | ||
- 'update-rc.d -f bootlogs remove || true' | ||
- 'update-rc.d -f mountdevsubfs.sh remove || true' | ||
- 'update-rc.d -f procps remove || true' | ||
- 'update-rc.d -f hostname.sh remove || true' | ||
- 'update-rc.d -f mountkernfs.sh remove || true' | ||
- 'update-rc.d -f urandom remove || true' | ||
- 'update-rc.d -f mountnfs-bootclean.sh remove || true' | ||
- 'update-rc.d -f mountnfs.sh remove || true' | ||
- 'update-rc.d -f umountnfs.sh remove || true' | ||
- 'update-rc.d -f umountfs remove || true' | ||
- 'update-rc.d -f umountroot remove || true' | ||
|
||
CONFIG: | ||
trace_limit: 200 | ||
type: aio |
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: | ||
ubuntu-16.04-x64: | ||
platform: ubuntu-16.04-amd64 | ||
hypervisor: docker | ||
image: ubuntu:16.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/lib/systemd/systemd"]' | ||
docker_image_commands: | ||
- 'apt-get update && apt-get install -y net-tools wget locales strace lsof && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen' | ||
- 'rm -rf /usr/sbin/policy-rc.d' | ||
- 'systemctl mask -- tmp.mount etc-hostname.mount etc-hosts.mount etc-resolv.conf.mount -.mount swap.target dev-mqueue.mount cgproxy.service [email protected] getty-static.service systemd-udev-trigger.service systemd-tmpfiles-setup-dev.service systemd-remount-fs.service systemd-ask-password-wall.path systemd-logind.service && systemctl set-default multi-user.target || true' | ||
|
||
CONFIG: | ||
trace_limit: 200 | ||
type: aio |
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: | ||
ubuntu-18.04-x64: | ||
platform: ubuntu-18.04-amd64 | ||
hypervisor: docker | ||
image: ubuntu:18.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/lib/systemd/systemd"]' | ||
docker_image_commands: | ||
- 'apt-get update && apt-get install -y net-tools wget locales strace lsof && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen' | ||
- 'rm -rf /usr/sbin/policy-rc.d' | ||
- 'systemctl mask -- tmp.mount etc-hostname.mount etc-hosts.mount etc-resolv.conf.mount -.mount swap.target dev-mqueue.mount cgproxy.service [email protected] getty-static.service systemd-udev-trigger.service systemd-tmpfiles-setup-dev.service systemd-remount-fs.service systemd-ask-password-wall.path systemd-logind.service && systemctl set-default multi-user.target || true' | ||
|
||
CONFIG: | ||
trace_limit: 200 | ||
type: aio |