inspec/kitchen.dokken.yml

130 lines
3.8 KiB
YAML
Raw Normal View History

2015-10-21 20:52:41 +00:00
---
driver:
2016-05-10 17:23:11 +00:00
name: dokken
chef_version: :latest
2016-05-10 17:23:11 +00:00
privileged: true # because Docker and SystemD/Upstart
transport:
name: dokken
2015-10-21 20:52:41 +00:00
provisioner:
2016-05-10 17:23:11 +00:00
name: dokken
2015-10-21 20:52:41 +00:00
verifier:
2015-10-26 18:29:58 +00:00
name: inspec
2015-10-22 11:57:29 +00:00
sudo: true
2015-10-21 20:52:41 +00:00
# Test against every supported target platform for which we have a dokken image.
# If we don't have a dokken image, see kitchen.chef.yml for Vagrant-based testing.
# Try to keep this list up to date!
# Visit https://hub.docker.com/search and https://github.com/test-kitchen/dokken-images to search for new images
2015-10-21 20:52:41 +00:00
platforms:
- name: amazonlinux
2016-05-10 17:23:11 +00:00
driver:
image: dokken/amazonlinux
pid_one_command: /sbin/init
- name: amazonlinux-2
2016-05-10 17:23:11 +00:00
driver:
image: dokken/amazonlinux-2
pid_one_command: /usr/lib/systemd/systemd
- name: centos-6
driver:
image: dokken/centos-6
pid_one_command: /sbin/init
- name: centos-7
driver:
image: dokken/centos-7
pid_one_command: /usr/lib/systemd/systemd
- name: centos-8
driver:
image: dokken/centos-8
pid_one_command: /usr/lib/systemd/systemd
- name: debian-9
2016-05-10 17:23:11 +00:00
driver:
image: dokken/debian-9
pid_one_command: /bin/systemd
2016-05-10 17:23:11 +00:00
intermediate_instructions:
- RUN /usr/bin/apt-get update -y
- name: debian-10
driver:
image: dokken/debian-10
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -y
- name: fedora-30
driver:
image: dokken/fedora-30
pid_one_command: /usr/lib/systemd/systemd
- name: fedora-31
driver:
image: dokken/fedora-31
pid_one_command: /usr/lib/systemd/systemd
- name: oraclelinux-6
2016-05-10 17:23:11 +00:00
driver:
image: dokken/oraclelinux-6
pid_one_command: /sbin/init
- name: oraclelinux-7
driver:
image: dokken/oraclelinux-7
2016-05-10 17:23:11 +00:00
pid_one_command: /usr/lib/systemd/systemd
# TODO: oraclelinux-8 is disabled because it currently fails with the following error:
# [2020-08-12T17:38:38+00:00] FATAL: RuntimeError: dnf_package[openssh-server] (ssh-hardening::server line 47) had an error: RuntimeError: dnf-helper.py had stderr output:
# Errors during downloading metadata for repository 'ol8_baseos_latest':
# - Curl error (6): Couldn't resolve host name for https://yum$ociregion.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/repodata/repomd.xml [Could not resolve host: yum$ociregion.oracle.com]
# - name: oraclelinux-8
# driver:
# image: dokken/oraclelinux-8
# pid_one_command: /usr/lib/systemd/systemd
# TODO: opensuse-leap is disabled because of the following error:
# [2020-10-23T16:08:49+00:00] FATAL: Chef::Exceptions::ProviderNotFound: package[openssh-server] (ssh-hardening::server line 47) had an error: Chef::Exceptions::ProviderNotFound: Cannot find a provider for package[openssh-server] on linux version 4.19.76-linuxkit
# - name: opensuse-leap
# driver:
# image: dokken/opensuse-leap-15
# pid_one_command: /bin/systemd
- name: ubuntu-16.04
driver:
image: dokken/ubuntu-16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -y
- name: ubuntu-18.04
driver:
image: dokken/ubuntu-18.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -y
- name: ubuntu-20.04
driver:
image: dokken/ubuntu-20.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -y
2015-10-21 20:52:41 +00:00
suites:
- name: resources
2016-05-10 17:23:11 +00:00
run_list:
- recipe[os_prepare]
verifier:
inspec_tests:
# TODO - split these out into core, database, unix, and windows resources
- test/kitchen/policies/default
2016-05-10 17:23:11 +00:00
attributes:
osprepare:
docker: true
application: false
# These are planned for the future
# Suites which exercise resources that exercise databases
# - name: resources-database
# Unix-only resources
# - name: resources-unix
# Windows-only resources
# - name: resources-windows