2015-10-21 20:52:41 +00:00
|
|
|
---
|
|
|
|
driver:
|
2016-05-10 17:23:11 +00:00
|
|
|
name: dokken
|
2020-08-11 21:15:38 +00:00
|
|
|
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
|
|
|
|
2019-05-15 22:46:09 +00:00
|
|
|
lifecycle:
|
2020-08-12 17:08:32 +00:00
|
|
|
# The purpose of this code is to build the InSpec gems from source and then make them available
|
|
|
|
# to the install_inspec cookbook, which will install the gems. This means that the inspec used
|
|
|
|
# during the Kitchen Verify phase will be the version from source.
|
2019-05-15 22:46:09 +00:00
|
|
|
pre_converge:
|
2020-05-25 23:08:14 +00:00
|
|
|
- local: cd inspec-bin && gem build inspec-core-bin.gemspec --output ../test/kitchen/cookbooks/install_inspec/files/inspec-core-bin.gem
|
|
|
|
- local: gem build inspec-core.gemspec --output test/kitchen/cookbooks/install_inspec/files/inspec-core.gem
|
2019-05-15 22:46:09 +00:00
|
|
|
|
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
|
|
|
|
2020-08-12 17:08:32 +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!
|
2015-10-21 20:52:41 +00:00
|
|
|
platforms:
|
2019-02-14 02:03:04 +00:00
|
|
|
- name: amazonlinux
|
2016-05-10 17:23:11 +00:00
|
|
|
driver:
|
2019-02-14 02:03:04 +00:00
|
|
|
image: dokken/amazonlinux
|
|
|
|
pid_one_command: /sbin/init
|
|
|
|
|
|
|
|
- name: amazonlinux-2
|
2016-05-10 17:23:11 +00:00
|
|
|
driver:
|
2019-02-14 02:03:04 +00:00
|
|
|
image: dokken/amazonlinux-2
|
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
|
2019-02-14 02:14:02 +00:00
|
|
|
- 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
|
|
|
|
|
2019-02-14 02:03:04 +00:00
|
|
|
- name: debian-9
|
2016-05-10 17:23:11 +00:00
|
|
|
driver:
|
2019-02-14 02:03:04 +00:00
|
|
|
image: dokken/debian-9
|
|
|
|
pid_one_command: /bin/systemd
|
2016-05-10 17:23:11 +00:00
|
|
|
intermediate_instructions:
|
2019-04-08 18:08:13 +00:00
|
|
|
- RUN /usr/bin/apt-get update -y
|
2019-02-14 02:03:04 +00:00
|
|
|
|
2019-05-15 21:41:29 +00:00
|
|
|
- name: debian-10
|
|
|
|
driver:
|
|
|
|
image: dokken/debian-10
|
|
|
|
pid_one_command: /bin/systemd
|
|
|
|
intermediate_instructions:
|
|
|
|
- RUN /usr/bin/apt-get update -y
|
|
|
|
|
2019-02-14 02:14:02 +00:00
|
|
|
- name: fedora-29
|
2019-02-14 02:03:04 +00:00
|
|
|
driver:
|
2019-02-14 02:14:02 +00:00
|
|
|
image: dokken/fedora-29
|
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
2019-02-14 02:03:04 +00:00
|
|
|
|
2019-02-14 06:51:22 +00:00
|
|
|
- name: oraclelinux-6
|
2016-05-10 17:23:11 +00:00
|
|
|
driver:
|
2019-02-14 06:51:22 +00:00
|
|
|
image: dokken/oraclelinux-6
|
|
|
|
pid_one_command: /sbin/init
|
2019-02-14 02:14:02 +00:00
|
|
|
|
2019-02-14 06:51:22 +00:00
|
|
|
- name: oraclelinux-7
|
2019-02-14 02:14:02 +00:00
|
|
|
driver:
|
2019-02-14 06:51:22 +00:00
|
|
|
image: dokken/oraclelinux-7
|
2016-05-10 17:23:11 +00:00
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
2019-02-14 02:03:04 +00:00
|
|
|
|
2019-02-14 02:14:02 +00:00
|
|
|
- name: opensuse-leap
|
|
|
|
driver:
|
|
|
|
image: dokken/opensuse-leap-42
|
|
|
|
pid_one_command: /bin/systemd
|
|
|
|
|
2019-02-14 02:03:04 +00:00
|
|
|
- name: ubuntu-16.04
|
|
|
|
driver:
|
|
|
|
image: dokken/ubuntu-16.04
|
|
|
|
pid_one_command: /bin/systemd
|
|
|
|
intermediate_instructions:
|
2019-04-08 18:08:13 +00:00
|
|
|
- RUN /usr/bin/apt-get update -y
|
2019-02-14 02:03:04 +00:00
|
|
|
|
|
|
|
- name: ubuntu-18.04
|
|
|
|
driver:
|
|
|
|
image: dokken/ubuntu-18.04
|
|
|
|
pid_one_command: /bin/systemd
|
|
|
|
intermediate_instructions:
|
2019-04-08 18:08:13 +00:00
|
|
|
- RUN /usr/bin/apt-get update -y
|
2015-10-21 20:52:41 +00:00
|
|
|
|
|
|
|
suites:
|
2019-09-13 17:19:54 +00:00
|
|
|
- name: resources-core
|
2016-05-10 17:23:11 +00:00
|
|
|
run_list:
|
2018-09-25 19:53:26 +00:00
|
|
|
- recipe[os_prepare]
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
2020-08-11 21:15:38 +00:00
|
|
|
# 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
|
2019-09-13 17:19:54 +00:00
|
|
|
|
2020-08-11 15:31:34 +00:00
|
|
|
# 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
|