2019-02-17 20:55:55 -03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
|
|
|
# For help on this file's format, see https://kitchen.ci/
|
|
|
|
driver:
|
|
|
|
name: docker
|
|
|
|
use_sudo: false
|
|
|
|
privileged: true
|
2019-04-20 10:12:57 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2019-02-17 20:55:55 -03:00
|
|
|
|
2019-02-20 22:52:16 +00:00
|
|
|
# Make sure the platforms listed below match up with
|
|
|
|
# the `env.matrix` instances defined in `.travis.yml`
|
2019-02-17 20:55:55 -03:00
|
|
|
platforms:
|
2020-09-20 15:30:00 +01:00
|
|
|
## SALT `tiamat`
|
|
|
|
- name: debian-10-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:debian-10
|
|
|
|
- name: debian-9-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:debian-9
|
|
|
|
- name: ubuntu-2004-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-20.04
|
|
|
|
- name: ubuntu-1804-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-18.04
|
|
|
|
- name: ubuntu-1604-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-16.04
|
|
|
|
- name: centos-8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:centos-8
|
|
|
|
- name: centos-7-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:centos-7
|
|
|
|
- name: amazonlinux-2-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:amazonlinux-2
|
|
|
|
- name: oraclelinux-8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:oraclelinux-8
|
|
|
|
- name: oraclelinux-7-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:oraclelinux-7
|
|
|
|
|
2019-10-30 04:49:10 +00:00
|
|
|
## SALT `master`
|
2019-10-24 18:11:56 +01:00
|
|
|
- name: debian-10-master-py3
|
2019-06-12 07:22:44 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:debian-10
|
2020-05-28 17:15:23 +01:00
|
|
|
- name: ubuntu-2004-master-py3
|
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:ubuntu-20.04
|
2019-10-30 04:49:10 +00:00
|
|
|
- name: ubuntu-1804-master-py3
|
2019-06-12 07:22:44 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:ubuntu-18.04
|
2019-10-30 04:49:10 +00:00
|
|
|
- name: centos-8-master-py3
|
2019-06-12 07:22:44 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:centos-8
|
2020-05-28 17:15:23 +01:00
|
|
|
- name: fedora-32-master-py3
|
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:fedora-32
|
2019-10-30 04:49:10 +00:00
|
|
|
- name: fedora-31-master-py3
|
2019-06-12 07:22:44 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:fedora-31
|
2020-05-28 17:15:23 +01:00
|
|
|
- name: opensuse-leap-152-master-py3
|
2019-06-12 07:22:44 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:opensuse-leap-15.2
|
2019-06-12 07:22:44 +01:00
|
|
|
run_command: /usr/lib/systemd/systemd
|
2020-05-28 17:15:23 +01:00
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
2019-09-06 19:21:49 +01:00
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
2020-02-05 10:26:54 +00:00
|
|
|
- name: amazonlinux-2-master-py3
|
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-master-py3:amazonlinux-2
|
2020-10-02 07:27:40 +01:00
|
|
|
- name: gentoo-stage3-latest-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:gentoo-stage3-latest
|
|
|
|
run_command: /sbin/init
|
|
|
|
- name: gentoo-stage3-systemd-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:gentoo-stage3-systemd
|
2019-06-12 07:22:44 +01:00
|
|
|
|
2020-09-20 15:30:00 +01:00
|
|
|
## SALT `3001`
|
|
|
|
- name: debian-10-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:debian-10
|
|
|
|
- name: debian-9-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:debian-9
|
|
|
|
- name: ubuntu-2004-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:ubuntu-20.04
|
|
|
|
- name: ubuntu-1804-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:ubuntu-18.04
|
|
|
|
- name: centos-8-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:centos-8
|
|
|
|
- name: centos-7-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:centos-7
|
|
|
|
- name: fedora-32-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:fedora-32
|
|
|
|
- name: fedora-31-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:fedora-31
|
|
|
|
- name: opensuse-leap-152-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:opensuse-leap-15.2
|
|
|
|
run_command: /usr/lib/systemd/systemd
|
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
|
|
|
- name: amazonlinux-2-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:amazonlinux-2
|
|
|
|
- name: oraclelinux-8-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:oraclelinux-8
|
|
|
|
- name: oraclelinux-7-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:oraclelinux-7
|
2020-10-02 07:27:40 +01:00
|
|
|
- name: gentoo-stage3-latest-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:gentoo-stage3-latest
|
|
|
|
run_command: /sbin/init
|
|
|
|
- name: gentoo-stage3-systemd-3001-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3001-py3:gentoo-stage3-systemd
|
2020-09-20 15:30:00 +01:00
|
|
|
|
2020-05-14 18:34:08 +01:00
|
|
|
## SALT `3000.3`
|
|
|
|
- name: debian-10-3000-3-py3
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:debian-10
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: debian-9-3000-3-py3
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:debian-9
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: ubuntu-1804-3000-3-py3
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:ubuntu-18.04
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: centos-8-3000-3-py3
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:centos-8
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: centos-7-3000-3-py3
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:centos-7
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: fedora-31-3000-3-py3
|
2020-05-02 07:59:26 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:fedora-31
|
2020-05-28 17:15:23 +01:00
|
|
|
- name: opensuse-leap-152-3000-3-py3
|
2020-05-02 07:59:26 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:opensuse-leap-15.2
|
2020-03-24 19:53:37 +00:00
|
|
|
run_command: /usr/lib/systemd/systemd
|
2020-05-28 17:15:23 +01:00
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
2020-03-24 19:53:37 +00:00
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: amazonlinux-2-3000-3-py3
|
2020-05-02 07:59:26 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py3:amazonlinux-2
|
2020-10-02 07:27:40 +01:00
|
|
|
- name: gentoo-stage3-latest-3000-3-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3000.3-py3:gentoo-stage3-latest
|
|
|
|
run_command: /sbin/init
|
|
|
|
- name: gentoo-stage3-systemd-3000-3-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3000.3-py3:gentoo-stage3-systemd
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: ubuntu-1804-3000-3-py2
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py2:ubuntu-18.04
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: ubuntu-1604-3000-3-py2
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py2:ubuntu-16.04
|
2020-05-14 18:34:08 +01:00
|
|
|
- name: arch-base-latest-3000-3-py2
|
2020-05-02 07:59:26 +01:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-3000.3-py2:arch-base-latest
|
2020-03-24 19:53:37 +00:00
|
|
|
run_command: /usr/lib/systemd/systemd
|
|
|
|
|
2019-07-30 08:40:33 +01:00
|
|
|
## SALT `2019.2`
|
2020-05-02 07:59:26 +01:00
|
|
|
- name: centos-6-2019-2-py2
|
2020-03-24 19:53:37 +00:00
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-2019.2-py2:centos-6
|
2020-05-02 07:59:26 +01:00
|
|
|
run_command: /sbin/init
|
2020-03-24 19:53:37 +00:00
|
|
|
- name: amazonlinux-1-2019-2-py2
|
|
|
|
driver:
|
2020-06-15 17:02:18 +01:00
|
|
|
image: saltimages/salt-2019.2-py2:amazonlinux-1
|
2020-03-24 19:53:37 +00:00
|
|
|
run_command: /sbin/init
|
2019-04-30 21:45:08 +01:00
|
|
|
|
2019-02-17 20:55:55 -03:00
|
|
|
provisioner:
|
|
|
|
name: salt_solo
|
2019-09-23 16:42:05 +01:00
|
|
|
log_level: debug
|
2019-04-22 21:46:48 +01:00
|
|
|
salt_install: none
|
2019-04-20 10:12:57 +01:00
|
|
|
require_chef: false
|
2019-11-22 22:45:32 +00:00
|
|
|
formula: TEMPLATE
|
2019-02-17 20:55:55 -03:00
|
|
|
salt_copy_filter:
|
|
|
|
- .kitchen
|
|
|
|
- .git
|
|
|
|
|
|
|
|
verifier:
|
|
|
|
# https://www.inspec.io/
|
|
|
|
name: inspec
|
|
|
|
sudo: true
|
|
|
|
# cli, documentation, html, progress, json, json-min, json-rspec, junit
|
|
|
|
reporter:
|
|
|
|
- cli
|
|
|
|
|
|
|
|
suites:
|
2019-04-22 21:46:48 +01:00
|
|
|
- name: default
|
2019-08-07 00:00:54 +01:00
|
|
|
excludes:
|
2020-09-01 18:24:12 +01:00
|
|
|
- centos-6-2019-2-py2
|
|
|
|
- amazonlinux-1-2019-2-py2
|
2020-10-02 07:27:40 +01:00
|
|
|
- gentoo-stage3-latest-master-py3
|
|
|
|
- gentoo-stage3-systemd-master-py3
|
|
|
|
- gentoo-stage3-latest-3001-py3
|
|
|
|
- gentoo-stage3-systemd-3001-py3
|
|
|
|
- gentoo-stage3-latest-3000-3-py3
|
|
|
|
- gentoo-stage3-systemd-3000-3-py3
|
2019-07-30 08:40:33 +01:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2020-09-03 16:27:31 +02:00
|
|
|
- TEMPLATE._mapdata
|
2019-11-22 22:45:32 +00:00
|
|
|
- TEMPLATE
|
2019-07-30 08:40:33 +01:00
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
2019-11-22 22:45:32 +00:00
|
|
|
- TEMPLATE
|
2019-08-07 00:00:54 +01:00
|
|
|
- define_roles
|
2019-07-30 08:40:33 +01:00
|
|
|
pillars_from_files:
|
2019-11-22 22:45:32 +00:00
|
|
|
TEMPLATE.sls: pillar.example
|
2019-08-07 00:00:54 +01:00
|
|
|
define_roles.sls: test/salt/pillar/define_roles.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2020-09-01 18:24:12 +01:00
|
|
|
- name: upstart
|
2019-08-07 00:00:54 +01:00
|
|
|
includes:
|
2020-09-01 18:24:12 +01:00
|
|
|
- centos-6-2019-2-py2
|
|
|
|
- amazonlinux-1-2019-2-py2
|
2019-08-07 00:00:54 +01:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2020-09-03 16:27:31 +02:00
|
|
|
- TEMPLATE._mapdata
|
2019-11-22 22:45:32 +00:00
|
|
|
- TEMPLATE
|
2019-08-07 00:00:54 +01:00
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
2019-11-22 22:45:32 +00:00
|
|
|
- TEMPLATE
|
2019-08-07 00:00:54 +01:00
|
|
|
- define_roles
|
|
|
|
pillars_from_files:
|
2020-09-01 18:24:12 +01:00
|
|
|
TEMPLATE.sls: test/salt/pillar/upstart.sls
|
2019-08-07 00:00:54 +01:00
|
|
|
define_roles.sls: test/salt/pillar/define_roles.sls
|
2019-07-30 08:40:33 +01:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2020-10-02 07:27:40 +01:00
|
|
|
- name: gentoo
|
|
|
|
includes:
|
|
|
|
- gentoo-stage3-latest-master-py3
|
|
|
|
- gentoo-stage3-systemd-master-py3
|
|
|
|
- gentoo-stage3-latest-3001-py3
|
|
|
|
- gentoo-stage3-systemd-3001-py3
|
|
|
|
- gentoo-stage3-latest-3000-3-py3
|
|
|
|
- gentoo-stage3-systemd-3000-3-py3
|
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- TEMPLATE._mapdata
|
|
|
|
- TEMPLATE
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- TEMPLATE
|
|
|
|
- gentoo
|
|
|
|
- define_roles
|
|
|
|
pillars_from_files:
|
|
|
|
TEMPLATE.sls: pillar.example
|
|
|
|
gentoo.sls: test/salt/pillar/gentoo.sls
|
|
|
|
define_roles.sls: test/salt/pillar/define_roles.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|