2019-03-05 20:12:25 -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
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /usr/lib/systemd/systemd
|
|
|
|
|
|
|
|
provisioner:
|
|
|
|
name: salt_solo
|
|
|
|
log_level: debug
|
|
|
|
salt_install: none
|
|
|
|
require_chef: false
|
|
|
|
formula: packages
|
|
|
|
salt_copy_filter:
|
|
|
|
- .kitchen
|
|
|
|
- .git
|
2019-03-05 20:12:25 -03:00
|
|
|
|
|
|
|
platforms:
|
2021-02-19 07:42:37 +00:00
|
|
|
## SALT `tiamat`
|
2021-07-18 19:03:46 +01:00
|
|
|
- name: debian-11-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:debian-11
|
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
|
|
|
run_command: /lib/systemd/systemd
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: debian-10-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:debian-10
|
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: debian-9-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:debian-9
|
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-05-06 23:17:22 +01:00
|
|
|
- name: ubuntu-2204-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-22.04
|
|
|
|
run_command: /lib/systemd/systemd
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: ubuntu-2004-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-20.04
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: ubuntu-1804-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-18.04
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-23 10:36:08 +00:00
|
|
|
- name: centos-stream8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:centos-stream8
|
2021-02-19 07:42:37 +00:00
|
|
|
- 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
|
2021-07-02 00:06:09 +01:00
|
|
|
- name: almalinux-8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:almalinux-8
|
|
|
|
- name: rockylinux-8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:rockylinux-8
|
2021-02-19 07:42:37 +00:00
|
|
|
|
2020-01-15 18:05:34 +00:00
|
|
|
## SALT `master`
|
2021-07-18 19:03:46 +01:00
|
|
|
- name: debian-11-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:debian-11
|
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
|
|
|
run_command: /lib/systemd/systemd
|
2020-01-15 18:05:34 +00:00
|
|
|
- name: debian-10-master-py3
|
2019-08-09 23:47:49 +02:00
|
|
|
driver:
|
2020-06-15 16:58:04 +01:00
|
|
|
image: saltimages/salt-master-py3:debian-10
|
2019-03-05 20:12:25 -03:00
|
|
|
provision_command:
|
2021-02-19 07:42:37 +00:00
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: debian-9-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:debian-9
|
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
2020-03-27 21:30:22 +00:00
|
|
|
- apt-get install --reinstall -y udev
|
2020-01-15 18:05:34 +00:00
|
|
|
- apt-get install -y snapd
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-05-06 23:17:22 +01:00
|
|
|
- name: ubuntu-2204-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:ubuntu-22.04
|
|
|
|
run_command: /lib/systemd/systemd
|
2020-06-01 20:21:01 +01:00
|
|
|
- name: ubuntu-2004-master-py3
|
|
|
|
driver:
|
2020-06-15 16:58:04 +01:00
|
|
|
image: saltimages/salt-master-py3:ubuntu-20.04
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2020-01-15 18:05:34 +00:00
|
|
|
- name: ubuntu-1804-master-py3
|
2019-08-09 23:47:49 +02:00
|
|
|
driver:
|
2020-06-15 16:58:04 +01:00
|
|
|
image: saltimages/salt-master-py3:ubuntu-18.04
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-23 10:36:08 +00:00
|
|
|
- name: centos-stream8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:centos-stream8
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: centos-7-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:centos-7
|
2022-04-11 19:22:02 +01:00
|
|
|
- name: fedora-36-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:fedora-36
|
2022-04-01 15:35:47 +01:00
|
|
|
- name: fedora-35-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:fedora-35
|
2021-07-02 00:06:09 +01:00
|
|
|
- name: opensuse-leap-153-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:opensuse-leap-15.3
|
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.3`:
|
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: opensuse-tmbl-latest-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:opensuse-tumbleweed-latest
|
|
|
|
# Workaround to avoid intermittent failures on `opensuse-tumbleweed`:
|
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
2020-02-05 14:07:07 +00:00
|
|
|
- name: amazonlinux-2-master-py3
|
2019-08-09 23:47:49 +02:00
|
|
|
driver:
|
2020-06-15 16:58:04 +01:00
|
|
|
image: saltimages/salt-master-py3:amazonlinux-2
|
2021-01-22 20:57:31 +01:00
|
|
|
- name: oraclelinux-8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:oraclelinux-8
|
2021-02-19 07:42:37 +00:00
|
|
|
- name: oraclelinux-7-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:oraclelinux-7
|
2021-05-09 22:32:40 +01:00
|
|
|
- name: arch-base-latest-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:arch-base-latest
|
2021-02-10 14:56:43 +00: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
|
2021-07-02 00:06:09 +01:00
|
|
|
- name: almalinux-8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:almalinux-8
|
|
|
|
- name: rockylinux-8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:rockylinux-8
|
2019-08-09 23:47:49 +02:00
|
|
|
|
2022-04-03 15:07:38 +01:00
|
|
|
## SALT `3004.1`
|
|
|
|
- name: debian-11-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:debian-11
|
2021-11-23 10:36:08 +00:00
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: debian-10-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:debian-10
|
2021-11-23 10:36:08 +00:00
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: debian-9-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:debian-9
|
2021-11-23 10:36:08 +00:00
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
|
|
|
run_command: /lib/systemd/systemd
|
2022-05-06 23:17:22 +01:00
|
|
|
- name: ubuntu-2204-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:ubuntu-22.04
|
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: ubuntu-2004-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:ubuntu-20.04
|
2021-11-23 10:36:08 +00:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: ubuntu-1804-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:ubuntu-18.04
|
2021-11-23 10:36:08 +00:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: centos-stream8-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:centos-stream8
|
|
|
|
- name: centos-7-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:centos-7
|
2022-04-11 19:22:02 +01:00
|
|
|
- name: fedora-36-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:fedora-36
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: fedora-35-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:fedora-35
|
|
|
|
- name: amazonlinux-2-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:amazonlinux-2
|
|
|
|
- name: oraclelinux-8-3004-1-py3
|
2022-04-01 15:35:47 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:oraclelinux-8
|
|
|
|
- name: oraclelinux-7-3004-1-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3004.1-py3:oraclelinux-7
|
|
|
|
- name: arch-base-latest-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:arch-base-latest
|
|
|
|
- name: gentoo-stage3-latest-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:gentoo-stage3-latest
|
|
|
|
run_command: /sbin/init
|
|
|
|
- name: gentoo-stage3-systemd-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:gentoo-stage3-systemd
|
|
|
|
- name: almalinux-8-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:almalinux-8
|
|
|
|
- name: rockylinux-8-3004-1-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.1-py3:rockylinux-8
|
|
|
|
|
|
|
|
## SALT `3004.0`
|
2021-11-23 10:36:08 +00:00
|
|
|
- name: opensuse-leap-153-3004-0-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.0-py3:opensuse-leap-15.3
|
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.3`:
|
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
|
|
|
- name: opensuse-tmbl-latest-3004-0-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-3004.0-py3:opensuse-tumbleweed-latest
|
|
|
|
# Workaround to avoid intermittent failures on `opensuse-tumbleweed`:
|
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
|
|
|
|
2022-04-03 15:07:38 +01:00
|
|
|
## SALT `3003.4`
|
|
|
|
- name: debian-10-3003-4-py3
|
2021-04-23 08:48:26 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:debian-10
|
2021-04-23 08:48:26 +01:00
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: debian-9-3003-4-py3
|
2021-04-23 08:48:26 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:debian-9
|
2021-04-23 08:48:26 +01:00
|
|
|
provision_command:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --reinstall -y udev
|
|
|
|
- apt-get install -y snapd
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: ubuntu-2004-3003-4-py3
|
2021-07-02 00:06:09 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:ubuntu-20.04
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: ubuntu-1804-3003-4-py3
|
2021-04-23 08:48:26 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:ubuntu-18.04
|
2021-07-17 21:11:27 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
2022-04-03 15:07:38 +01:00
|
|
|
- name: centos-stream8-3003-4-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:centos-stream8
|
|
|
|
- name: centos-7-3003-4-py3
|
2021-04-23 08:48:26 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:centos-7
|
|
|
|
- name: amazonlinux-2-3003-4-py3
|
2022-02-02 23:04:54 +00:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:amazonlinux-2
|
|
|
|
- name: oraclelinux-8-3003-4-py3
|
2021-04-23 08:48:26 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:oraclelinux-8
|
|
|
|
- name: oraclelinux-7-3003-4-py3
|
2021-04-23 08:48:26 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:oraclelinux-7
|
|
|
|
- name: almalinux-8-3003-4-py3
|
2021-07-02 00:06:09 +01:00
|
|
|
driver:
|
2022-04-03 15:07:38 +01:00
|
|
|
image: saltimages/salt-3003.4-py3:almalinux-8
|
2021-08-19 10:13:47 +01:00
|
|
|
|
2019-03-05 20:12:25 -03:00
|
|
|
verifier:
|
2019-08-09 23:47:49 +02:00
|
|
|
# https://www.inspec.io/
|
2019-03-05 20:12:25 -03:00
|
|
|
name: inspec
|
|
|
|
sudo: true
|
|
|
|
reporter:
|
2021-07-17 20:28:44 +01:00
|
|
|
# cli, documentation, html, progress, json, json-min, json-rspec, junit
|
2019-03-05 20:12:25 -03:00
|
|
|
- cli
|
|
|
|
|
|
|
|
suites:
|
2019-08-13 19:30:24 +02:00
|
|
|
- name: debian
|
2019-08-13 19:16:06 +02:00
|
|
|
includes:
|
2021-07-18 19:03:46 +01:00
|
|
|
- debian-11-tiamat-py3
|
2021-02-19 07:42:37 +00:00
|
|
|
- debian-10-tiamat-py3
|
|
|
|
- debian-9-tiamat-py3
|
2021-07-18 19:03:46 +01:00
|
|
|
- debian-11-master-py3
|
2020-01-15 18:05:34 +00:00
|
|
|
- debian-10-master-py3
|
2021-02-19 07:42:37 +00:00
|
|
|
- debian-9-master-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- debian-11-3004-1-py3
|
|
|
|
- debian-10-3004-1-py3
|
|
|
|
- debian-9-3004-1-py3
|
|
|
|
- debian-10-3003-4-py3
|
|
|
|
- debian-9-3003-4-py3
|
2019-03-10 09:18:39 -03:00
|
|
|
provisioner:
|
2021-02-19 07:42:37 +00:00
|
|
|
dependencies:
|
|
|
|
- name: node
|
|
|
|
repo: git
|
|
|
|
source: https://github.com/saltstack-formulas/node-formula.git
|
2019-03-10 09:18:39 -03:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2020-01-15 18:05:34 +00:00
|
|
|
- node
|
2019-03-10 09:18:39 -03:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
2019-08-09 23:47:49 +02:00
|
|
|
- packages
|
2019-03-06 09:41:23 -03:00
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/debian.sls
|
2019-08-09 23:47:49 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2019-08-13 19:30:24 +02:00
|
|
|
- name: ubuntu
|
|
|
|
includes:
|
2022-05-06 23:17:22 +01:00
|
|
|
- ubuntu-2204-tiamat-py3
|
2021-02-19 07:42:37 +00:00
|
|
|
- ubuntu-2004-tiamat-py3
|
|
|
|
- ubuntu-1804-tiamat-py3
|
2022-05-06 23:17:22 +01:00
|
|
|
- ubuntu-2204-master-py3
|
2020-06-01 20:21:01 +01:00
|
|
|
- ubuntu-2004-master-py3
|
2020-01-15 18:05:34 +00:00
|
|
|
- ubuntu-1804-master-py3
|
2022-05-06 23:17:22 +01:00
|
|
|
- ubuntu-2204-3004-1-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- ubuntu-2004-3004-1-py3
|
|
|
|
- ubuntu-1804-3004-1-py3
|
|
|
|
- ubuntu-2004-3003-4-py3
|
|
|
|
- ubuntu-1804-3003-4-py3
|
2019-08-13 19:30:24 +02:00
|
|
|
provisioner:
|
2021-02-19 07:42:37 +00:00
|
|
|
dependencies:
|
|
|
|
- name: golang
|
|
|
|
repo: git
|
|
|
|
source: https://github.com/saltstack-formulas/golang-formula.git
|
2019-08-13 19:30:24 +02:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2020-01-15 18:05:34 +00:00
|
|
|
- golang.package
|
2019-08-13 19:30:24 +02:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/ubuntu.sls
|
2019-08-13 19:30:24 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2020-01-15 18:05:34 +00:00
|
|
|
- name: fedora
|
2019-08-13 20:44:24 +02:00
|
|
|
includes:
|
2022-04-11 19:22:02 +01:00
|
|
|
- fedora-36-master-py3
|
2022-04-01 15:35:47 +01:00
|
|
|
- fedora-35-master-py3
|
2022-04-11 19:22:02 +01:00
|
|
|
- fedora-36-3004-1-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- fedora-35-3004-1-py3
|
2019-08-13 20:44:24 +02:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2019-08-13 20:44:24 +02:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/fedora.sls
|
2019-08-13 20:44:24 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2021-01-22 20:57:31 +01:00
|
|
|
- name: redhat8
|
2019-08-13 20:44:24 +02:00
|
|
|
includes:
|
2021-11-23 10:36:08 +00:00
|
|
|
- centos-stream8-tiamat-py3
|
2021-02-19 07:42:37 +00:00
|
|
|
- oraclelinux-8-tiamat-py3
|
2021-07-02 00:06:09 +01:00
|
|
|
- almalinux-8-tiamat-py3
|
|
|
|
- rockylinux-8-tiamat-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
- centos-stream8-master-py3
|
2021-01-22 20:57:31 +01:00
|
|
|
- oraclelinux-8-master-py3
|
2021-07-02 00:06:09 +01:00
|
|
|
- almalinux-8-master-py3
|
|
|
|
- rockylinux-8-master-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- centos-stream8-3004-1-py3
|
|
|
|
- oraclelinux-8-3004-1-py3
|
|
|
|
- almalinux-8-3004-1-py3
|
|
|
|
- rockylinux-8-3004-1-py3
|
|
|
|
- centos-stream8-3003-4-py3
|
|
|
|
- oraclelinux-8-3003-4-py3
|
|
|
|
- almalinux-8-3003-4-py3
|
2021-01-22 20:57:31 +01:00
|
|
|
provisioner:
|
2021-02-19 07:42:37 +00:00
|
|
|
dependencies:
|
|
|
|
- name: epel
|
|
|
|
repo: git
|
|
|
|
source: https://github.com/saltstack-formulas/epel-formula.git
|
2021-01-22 20:57:31 +01:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2021-01-22 20:57:31 +01:00
|
|
|
- epel
|
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
|
|
|
packages.sls: test/salt/pillar/redhat8.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
|
|
|
- name: centos
|
|
|
|
includes:
|
2021-02-19 07:42:37 +00:00
|
|
|
- centos-7-tiamat-py3
|
|
|
|
- oraclelinux-7-tiamat-py3
|
|
|
|
- centos-7-master-py3
|
|
|
|
- oraclelinux-7-master-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- centos-7-3004-1-py3
|
|
|
|
- oraclelinux-7-3004-1-py3
|
|
|
|
- centos-7-3003-4-py3
|
|
|
|
- oraclelinux-7-3003-4-py3
|
2019-08-13 20:44:24 +02:00
|
|
|
provisioner:
|
2021-02-19 07:42:37 +00:00
|
|
|
dependencies:
|
|
|
|
- name: epel
|
|
|
|
repo: git
|
|
|
|
source: https://github.com/saltstack-formulas/epel-formula.git
|
2019-08-13 20:44:24 +02:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2020-01-15 18:05:34 +00:00
|
|
|
- epel
|
2019-08-13 20:44:24 +02:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/redhat.sls
|
2019-08-13 20:44:24 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2020-01-15 18:05:34 +00:00
|
|
|
- name: amazon
|
2019-08-13 23:13:51 +02:00
|
|
|
includes:
|
2021-02-19 07:42:37 +00:00
|
|
|
- amazonlinux-2-tiamat-py3
|
2020-02-05 14:07:07 +00:00
|
|
|
- amazonlinux-2-master-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- amazonlinux-2-3004-1-py3
|
|
|
|
- amazonlinux-2-3003-4-py3
|
2019-08-13 23:13:51 +02:00
|
|
|
provisioner:
|
2021-02-19 07:42:37 +00:00
|
|
|
dependencies:
|
|
|
|
- name: epel
|
|
|
|
repo: git
|
|
|
|
source: https://github.com/saltstack-formulas/epel-formula.git
|
2019-08-13 23:13:51 +02:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2020-01-15 18:05:34 +00:00
|
|
|
- epel
|
2019-08-13 23:13:51 +02:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/amazon.sls
|
2019-08-13 23:13:51 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2020-01-15 18:05:34 +00:00
|
|
|
- name: suse
|
2019-08-16 15:19:55 +02:00
|
|
|
includes:
|
2021-07-02 00:06:09 +01:00
|
|
|
- opensuse-leap-153-master-py3
|
2021-02-19 07:42:37 +00:00
|
|
|
- opensuse-tmbl-latest-master-py3
|
2021-11-23 10:36:08 +00:00
|
|
|
- opensuse-leap-153-3004-0-py3
|
|
|
|
- opensuse-tmbl-latest-3004-0-py3
|
2019-08-16 15:19:55 +02:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2019-08-16 15:19:55 +02:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/opensuse.sls
|
2019-08-16 15:19:55 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2020-01-15 18:05:34 +00:00
|
|
|
- name: arch
|
2019-08-16 14:14:25 +02:00
|
|
|
includes:
|
2021-05-09 22:32:40 +01:00
|
|
|
- arch-base-latest-master-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- arch-base-latest-3004-1-py3
|
2019-08-16 14:14:25 +02:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2019-08-16 14:14:25 +02:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
2020-01-15 18:05:34 +00:00
|
|
|
packages.sls: test/salt/pillar/arch.sls
|
2019-08-16 14:14:25 +02:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2021-02-10 14:56:43 +00:00
|
|
|
- name: gentoo
|
|
|
|
includes:
|
|
|
|
- gentoo-stage3-latest-master-py3
|
|
|
|
- gentoo-stage3-systemd-master-py3
|
2022-04-03 15:07:38 +01:00
|
|
|
- gentoo-stage3-latest-3004-1-py3
|
|
|
|
- gentoo-stage3-systemd-3004-1-py3
|
2021-02-10 14:56:43 +00:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-03-23 21:31:39 +00:00
|
|
|
- packages._mapdata
|
2021-02-10 14:56:43 +00:00
|
|
|
- packages
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
|
|
|
packages.sls: test/salt/pillar/gentoo.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/default
|
2021-03-26 11:15:12 +00:00
|
|
|
- name: windows
|
|
|
|
includes:
|
2021-04-13 18:46:19 +01:00
|
|
|
- windows-10-latest-py3
|
2021-03-26 11:15:12 +00:00
|
|
|
- windows-81-latest-py3
|
2021-12-22 08:34:17 +00:00
|
|
|
- windows-2022-latest-py3
|
2021-03-26 11:15:12 +00:00
|
|
|
- windows-2019-latest-py3
|
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2021-10-01 16:59:24 +01:00
|
|
|
- packages._mapdata
|
2021-03-26 11:15:12 +00:00
|
|
|
- packages.chocolatey
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- packages
|
|
|
|
pillars_from_files:
|
|
|
|
packages.sls: test/salt/pillar/windows.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/windows
|