-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Debian and Ubuntu support (#24)
Drop Debian 9 and Ubuntu 18.04 Add Debian 10, 11 and Ubuntu 20.04, 22.04
- Loading branch information
Showing
7 changed files
with
136 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
HOSTS: | ||
debian10: | ||
roles: | ||
- agent | ||
platform: debian-10-amd64 | ||
hypervisor: docker | ||
image: debian:10 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'apt-get install -y wget net-tools systemd-sysv locales apt-transport-https ca-certificates' | ||
- '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_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'kdump-debian10' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
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,28 @@ | ||
HOSTS: | ||
debian11: | ||
roles: | ||
- agent | ||
platform: debian-11-amd64 | ||
hypervisor: docker | ||
image: debian:11 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/sbin/init' | ||
docker_image_commands: | ||
- 'apt-get install -y wget net-tools systemd-sysv locales apt-transport-https ca-certificates' | ||
- '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_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'kdump-debian11' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
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,26 @@ | ||
HOSTS: | ||
almalinux-9: | ||
roles: | ||
- agent | ||
platform: el-9-x86_64 | ||
hypervisor: docker | ||
image: almalinux:9 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/usr/sbin/init' | ||
docker_image_commands: | ||
- 'dnf install -y dnf-utils' | ||
- 'dnf config-manager --set-enabled crb' | ||
- 'dnf install -y wget which cronie iproute initscripts langpacks-en glibc-all-langpacks glibc-langpack-en cpio' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'kdump-el9' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
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,25 @@ | ||
HOSTS: | ||
ubuntu2004: | ||
roles: | ||
- agent | ||
platform: ubuntu-20.04-amd64 | ||
hypervisor : docker | ||
image: ubuntu:20.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- "rm -f /etc/dpkg/dpkg.cfg.d/excludes" | ||
- 'apt-get install -y wget net-tools iproute2 locales apt-transport-https ca-certificates' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'kdump-ubuntu2004' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
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,25 @@ | ||
HOSTS: | ||
ubuntu2204: | ||
roles: | ||
- agent | ||
platform: ubuntu-22.04-amd64 | ||
hypervisor : docker | ||
image: ubuntu:22.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- "rm -f /etc/dpkg/dpkg.cfg.d/excludes" | ||
- 'apt-get install -y wget net-tools iproute2 locales apt-transport-https ca-certificates' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'kdump-ubuntu2204' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|