38 lines
763 B
YAML
38 lines
763 B
YAML
---
|
|
driver:
|
|
name: dokken
|
|
privileged: true # allows systemd services to start
|
|
|
|
provisioner:
|
|
name: dokken
|
|
|
|
transport:
|
|
name: dokken
|
|
|
|
verifier:
|
|
name: inspec
|
|
|
|
platforms:
|
|
# @see https://github.com/chef-cookbooks/testing_examples/blob/main/kitchen.dokken.yml
|
|
# @see https://hub.docker.com/u/dokken
|
|
- name: ubuntu-20.04
|
|
driver:
|
|
image: dokken/ubuntu-20.04
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: centos-8
|
|
driver:
|
|
image: dokken/centos-8
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
suites:
|
|
- name: default
|
|
run_list:
|
|
- recipe[kosmos_liquor-cabinet::default]
|
|
verifier:
|
|
inspec_tests:
|
|
- test/integration/default
|
|
attributes:
|