feat: use `semantic-release` cross-formula standard structure
* Semi-automated using https://github.com/myii/ssf-formula/pull/31
* Includes:
- Update TOFS
- Use `bin/kitchen`
- Use `dist: bionic` in Travis
- Add `yamllint` and apply rules
- Use `pillars_from_files` throughout
- Replace EOL images in Kitchen & Travis
- Add `develop` images in Kitchen & Travis
* Fix (or ignore) errors shown below:
```bash
salt-formula$ yamllint -s .
./pillar.example
1:1 warning missing document start "---" (document-start)
5:23 warning truthy value should be one of [false, true] (truthy)
8:25 warning truthy value should be one of [false, true] (truthy)
11:25 warning truthy value should be one of [false, true] (truthy)
19:21 warning truthy value should be one of [false, true] (truthy)
40:89 error line too long (108 > 88 characters) (line-length)
41:89 error line too long (112 > 88 characters) (line-length)
43:89 error line too long (112 > 88 characters) (line-length)
45:89 error line too long (110 > 88 characters) (line-length)
47:89 error line too long (89 > 88 characters) (line-length)
74:27 warning truthy value should be one of [false, true] (truthy)
82:9 error wrong indentation: expected 10 but found 8 (indentation)
101:14 warning truthy value should be one of [false, true] (truthy)
102:20 warning truthy value should be one of [false, true] (truthy)
103:89 error line too long (119 > 88 characters) (line-length)
121:7 warning comment not indented like content (comments-indentation)
122:24 error syntax error: found character '%' that cannot start any token
310:89 error line too long (102 > 88 characters) (line-length)
330:89 error line too long (113 > 88 characters) (line-length)
433:1 error too many blank lines (1 > 0) (empty-lines)
./salt/osmap.yaml
4:2 error syntax error: found character '%' that cannot start any token
6:89 error line too long (93 > 88 characters) (line-length)
22:89 error line too long (137 > 88 characters) (line-length)
23:89 error line too long (134 > 88 characters) (line-length)
33:89 error line too long (149 > 88 characters) (line-length)
34:89 error line too long (146 > 88 characters) (line-length)
./salt/osfamilymap.yaml
4:2 error syntax error: found character '%' that cannot start any token
6:89 error line too long (94 > 88 characters) (line-length)
24:89 error line too long (149 > 88 characters) (line-length)
25:89 error line too long (146 > 88 characters) (line-length)
39:89 error line too long (105 > 88 characters) (line-length)
40:89 error line too long (127 > 88 characters) (line-length)
56:89 error line too long (101 > 88 characters) (line-length)
./salt/ospyvermap.yaml
4:1 warning missing document start "---" (document-start)
./salt/defaults.yaml
3:1 warning missing document start "---" (document-start)
7:21 warning truthy value should be one of [false, true] (truthy)
8:12 warning truthy value should be one of [false, true] (truthy)
9:23 warning truthy value should be one of [false, true] (truthy)
10:19 warning truthy value should be one of [false, true] (truthy)
14:25 warning truthy value should be one of [false, true] (truthy)
15:25 warning truthy value should be one of [false, true] (truthy)
16:27 warning truthy value should be one of [false, true] (truthy)
17:27 warning truthy value should be one of [false, true] (truthy)
39:28 warning truthy value should be one of [false, true] (truthy)
41:28 warning truthy value should be one of [false, true] (truthy)
45:24 warning truthy value should be one of [false, true] (truthy)
49:30 warning truthy value should be one of [false, true] (truthy)
54:28 warning truthy value should be one of [false, true] (truthy)
63:25 warning truthy value should be one of [false, true] (truthy)
68:15 warning truthy value should be one of [false, true] (truthy)
```
2019-09-11 23:37:14 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
2019-03-27 13:07:06 +01:00
|
|
|
---
|
2019-09-17 23:56:38 +02:00
|
|
|
# For help on this file's format, see https://kitchen.ci/
|
2019-03-27 13:07:06 +01:00
|
|
|
driver:
|
|
|
|
name: docker
|
|
|
|
use_sudo: false
|
|
|
|
privileged: true
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /usr/lib/systemd/systemd
|
|
|
|
|
|
|
|
provisioner:
|
|
|
|
name: salt_solo
|
|
|
|
log_level: debug
|
|
|
|
salt_install: none
|
|
|
|
require_chef: false
|
|
|
|
formula: salt
|
|
|
|
salt_copy_filter:
|
|
|
|
- .kitchen
|
|
|
|
- .git
|
2021-11-17 22:53:16 +01:00
|
|
|
pillars_from_directories:
|
|
|
|
- test/salt/pillar
|
2019-03-27 13:07:06 +01:00
|
|
|
|
|
|
|
platforms:
|
2020-12-21 00:22:42 +01:00
|
|
|
## SALT `tiamat`
|
2021-07-18 20:05:11 +02:00
|
|
|
- name: debian-11-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:debian-11
|
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: debian-10-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:debian-10
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: debian-9-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:debian-9
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: ubuntu-2004-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-20.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: ubuntu-1804-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:ubuntu-18.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-11-19 23:08:25 +01:00
|
|
|
- name: centos-stream8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:centos-stream8
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: centos-7-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:centos-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: amazonlinux-2-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:amazonlinux-2
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: oraclelinux-8-tiamat-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-tiamat-py3:oraclelinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: oraclelinux-7-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:oraclelinux-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-07-02 01:07:43 +02:00
|
|
|
- name: almalinux-8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:almalinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-07-02 01:07:43 +02:00
|
|
|
- name: rockylinux-8-tiamat-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-tiamat-py3:rockylinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
|
|
|
|
## SALT `master`
|
2021-07-18 20:05:11 +02:00
|
|
|
- name: debian-11-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:debian-11
|
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: debian-10-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:debian-10
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: debian-9-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:debian-9
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: ubuntu-2004-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:ubuntu-20.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: ubuntu-1804-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:ubuntu-18.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-11-19 23:08:25 +01:00
|
|
|
- name: centos-stream8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:centos-stream8
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: centos-7-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:centos-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-01 16:37:18 +02:00
|
|
|
- name: fedora-35-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:fedora-35
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-04-22 09:40:02 +02:00
|
|
|
- name: fedora-34-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:fedora-34
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-07-02 01:07:43 +02: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-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-01-29 09:56:07 +01: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
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: amazonlinux-2-master-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-master-py3:amazonlinux-2
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: oraclelinux-8-master-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-master-py3:oraclelinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-02-14 08:44:21 +01:00
|
|
|
- name: oraclelinux-7-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:oraclelinux-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-05-09 23:33:53 +02:00
|
|
|
- name: arch-base-latest-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:arch-base-latest
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: gentoo-stage3-latest-master-py3
|
2020-06-23 09:41:25 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-master-py3:gentoo-stage3-latest
|
2020-10-12 10:29:41 +02:00
|
|
|
run_command: /sbin/init
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-12-21 00:22:42 +01:00
|
|
|
- name: gentoo-stage3-systemd-master-py3
|
2020-10-12 10:29:41 +02:00
|
|
|
driver:
|
2020-12-21 00:22:42 +01:00
|
|
|
image: saltimages/salt-master-py3:gentoo-stage3-systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-07-02 01:07:43 +02:00
|
|
|
- name: almalinux-8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:almalinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2021-07-02 01:07:43 +02:00
|
|
|
- name: rockylinux-8-master-py3
|
|
|
|
driver:
|
|
|
|
image: saltimages/salt-master-py3:rockylinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2020-06-23 09:41:25 +02:00
|
|
|
|
2022-04-03 11:07:04 +02:00
|
|
|
## SALT `3004.1`
|
|
|
|
- name: debian-11-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:debian-11
|
2021-11-19 23:08:25 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: debian-10-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:debian-10
|
2021-11-19 23:08:25 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: debian-9-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:debian-9
|
2021-11-19 23:08:25 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: ubuntu-2004-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:ubuntu-20.04
|
2021-11-19 23:08:25 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: ubuntu-1804-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:ubuntu-18.04
|
2021-11-19 23:08:25 +01:00
|
|
|
run_command: /lib/systemd/systemd
|
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: centos-stream8-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:centos-stream8
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: centos-7-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:centos-7
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: fedora-35-3004-1-py3
|
2022-04-01 16:37:18 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:fedora-35
|
2022-04-01 16:37:18 +02:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: fedora-34-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:fedora-34
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: amazonlinux-2-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:amazonlinux-2
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: oraclelinux-8-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:oraclelinux-8
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: oraclelinux-7-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:oraclelinux-7
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: arch-base-latest-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:arch-base-latest
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: gentoo-stage3-latest-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:gentoo-stage3-latest
|
|
|
|
run_command: /sbin/init
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: gentoo-stage3-systemd-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:gentoo-stage3-systemd
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: almalinux-8-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:almalinux-8
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: rockylinux-8-3004-1-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3004.1-py3:rockylinux-8
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
|
|
|
|
## SALT `3004.0`
|
|
|
|
- name: opensuse-leap-153-3004-0-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
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
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: opensuse-tmbl-latest-3004-0-py3
|
2021-11-19 23:08:25 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
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
|
2021-11-19 23:08:25 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3004
|
|
|
|
|
2022-04-03 11:07:04 +02:00
|
|
|
## SALT `3003.4`
|
|
|
|
- name: debian-10-3003-4-py3
|
2021-07-02 01:07:43 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:debian-10
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: debian-9-3003-4-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:debian-9
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: ubuntu-2004-3003-4-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:ubuntu-20.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: ubuntu-1804-3003-4-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:ubuntu-18.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: centos-stream8-3003-4-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:centos-stream8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: centos-7-3003-4-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:centos-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: amazonlinux-2-3003-4-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:amazonlinux-2
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: oraclelinux-8-3003-4-py3
|
2021-07-02 01:07:43 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:oraclelinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: oraclelinux-7-3003-4-py3
|
2021-08-19 11:14:50 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:oraclelinux-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: almalinux-8-3003-4-py3
|
2021-08-19 11:14:50 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3003.4-py3:almalinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3003
|
2021-08-19 11:14:50 +02:00
|
|
|
|
2022-04-03 11:07:04 +02:00
|
|
|
## SALT `3002.8`
|
|
|
|
- name: debian-10-3002-8-py3
|
2021-04-22 09:40:02 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:debian-10
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: debian-9-3002-8-py3
|
2021-03-07 23:22:21 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:debian-9
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: ubuntu-2004-3002-8-py3
|
2021-03-07 23:22:21 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:ubuntu-20.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: ubuntu-1804-3002-8-py3
|
2021-03-07 23:22:21 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:ubuntu-18.04
|
2021-07-17 22:12:34 +02:00
|
|
|
run_command: /lib/systemd/systemd
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: centos-7-3002-8-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:centos-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: amazonlinux-2-3002-8-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:amazonlinux-2
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: oraclelinux-8-3002-8-py3
|
2021-03-07 23:22:21 +01:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:oraclelinux-8
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2022-04-03 11:07:04 +02:00
|
|
|
- name: oraclelinux-7-3002-8-py3
|
2021-10-05 01:10:15 +02:00
|
|
|
driver:
|
2022-04-03 11:07:04 +02:00
|
|
|
image: saltimages/salt-3002.8-py3:oraclelinux-7
|
2021-11-17 22:53:16 +01:00
|
|
|
verifier:
|
|
|
|
inputs:
|
|
|
|
saltmajorversion: 3002
|
2019-09-17 23:56:38 +02:00
|
|
|
|
2019-03-27 13:07:06 +01:00
|
|
|
verifier:
|
feat: use `semantic-release` cross-formula standard structure
* Semi-automated using https://github.com/myii/ssf-formula/pull/31
* Includes:
- Update TOFS
- Use `bin/kitchen`
- Use `dist: bionic` in Travis
- Add `yamllint` and apply rules
- Use `pillars_from_files` throughout
- Replace EOL images in Kitchen & Travis
- Add `develop` images in Kitchen & Travis
* Fix (or ignore) errors shown below:
```bash
salt-formula$ yamllint -s .
./pillar.example
1:1 warning missing document start "---" (document-start)
5:23 warning truthy value should be one of [false, true] (truthy)
8:25 warning truthy value should be one of [false, true] (truthy)
11:25 warning truthy value should be one of [false, true] (truthy)
19:21 warning truthy value should be one of [false, true] (truthy)
40:89 error line too long (108 > 88 characters) (line-length)
41:89 error line too long (112 > 88 characters) (line-length)
43:89 error line too long (112 > 88 characters) (line-length)
45:89 error line too long (110 > 88 characters) (line-length)
47:89 error line too long (89 > 88 characters) (line-length)
74:27 warning truthy value should be one of [false, true] (truthy)
82:9 error wrong indentation: expected 10 but found 8 (indentation)
101:14 warning truthy value should be one of [false, true] (truthy)
102:20 warning truthy value should be one of [false, true] (truthy)
103:89 error line too long (119 > 88 characters) (line-length)
121:7 warning comment not indented like content (comments-indentation)
122:24 error syntax error: found character '%' that cannot start any token
310:89 error line too long (102 > 88 characters) (line-length)
330:89 error line too long (113 > 88 characters) (line-length)
433:1 error too many blank lines (1 > 0) (empty-lines)
./salt/osmap.yaml
4:2 error syntax error: found character '%' that cannot start any token
6:89 error line too long (93 > 88 characters) (line-length)
22:89 error line too long (137 > 88 characters) (line-length)
23:89 error line too long (134 > 88 characters) (line-length)
33:89 error line too long (149 > 88 characters) (line-length)
34:89 error line too long (146 > 88 characters) (line-length)
./salt/osfamilymap.yaml
4:2 error syntax error: found character '%' that cannot start any token
6:89 error line too long (94 > 88 characters) (line-length)
24:89 error line too long (149 > 88 characters) (line-length)
25:89 error line too long (146 > 88 characters) (line-length)
39:89 error line too long (105 > 88 characters) (line-length)
40:89 error line too long (127 > 88 characters) (line-length)
56:89 error line too long (101 > 88 characters) (line-length)
./salt/ospyvermap.yaml
4:1 warning missing document start "---" (document-start)
./salt/defaults.yaml
3:1 warning missing document start "---" (document-start)
7:21 warning truthy value should be one of [false, true] (truthy)
8:12 warning truthy value should be one of [false, true] (truthy)
9:23 warning truthy value should be one of [false, true] (truthy)
10:19 warning truthy value should be one of [false, true] (truthy)
14:25 warning truthy value should be one of [false, true] (truthy)
15:25 warning truthy value should be one of [false, true] (truthy)
16:27 warning truthy value should be one of [false, true] (truthy)
17:27 warning truthy value should be one of [false, true] (truthy)
39:28 warning truthy value should be one of [false, true] (truthy)
41:28 warning truthy value should be one of [false, true] (truthy)
45:24 warning truthy value should be one of [false, true] (truthy)
49:30 warning truthy value should be one of [false, true] (truthy)
54:28 warning truthy value should be one of [false, true] (truthy)
63:25 warning truthy value should be one of [false, true] (truthy)
68:15 warning truthy value should be one of [false, true] (truthy)
```
2019-09-11 23:37:14 +02:00
|
|
|
# https://www.inspec.io/
|
2019-03-27 13:07:06 +01:00
|
|
|
name: inspec
|
|
|
|
sudo: true
|
|
|
|
reporter:
|
2021-07-17 21:29:57 +02:00
|
|
|
# cli, documentation, html, progress, json, json-min, json-rspec, junit
|
2019-03-27 13:07:06 +01:00
|
|
|
- cli
|
|
|
|
|
|
|
|
suites:
|
2021-11-17 22:53:16 +01:00
|
|
|
- name: default
|
2020-06-23 09:41:25 +02:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
2020-12-23 01:02:25 +01:00
|
|
|
- salt._mapdata
|
2020-06-23 09:41:25 +02:00
|
|
|
- salt.pkgrepo
|
|
|
|
- salt.master
|
|
|
|
- salt.minion
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
2021-11-17 22:53:16 +01:00
|
|
|
- path: test/integration/default
|