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
|
|
|
|
run_command: /lib/systemd/systemd
|
|
|
|
|
2019-09-17 23:56:38 +02:00
|
|
|
# Make sure the platforms listed below match up with
|
|
|
|
# the `env.matrix` instances defined in `.travis.yml`
|
2019-03-27 13:07:06 +01:00
|
|
|
platforms:
|
2020-05-14 08:13:33 +02:00
|
|
|
## SALT `3000.3`
|
|
|
|
- name: debian-10-3000-3-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:debian-10
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: debian-9-3000-3-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:debian-9
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: ubuntu-1804-3000-3-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:ubuntu-18.04
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: centos-8-3000-3-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:centos-8
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: centos-7-3000-3-py3
|
2019-10-01 17:24:04 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:centos-7
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: fedora-31-3000-3-py3
|
2020-05-01 08:36:27 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:fedora-31
|
2020-05-26 02:31:06 +02:00
|
|
|
- name: opensuse-leap-152-3000-3-py3
|
2020-05-01 08:36:27 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:opensuse-leap-15.2
|
2019-10-01 17:24:04 +02:00
|
|
|
run_command: /usr/lib/systemd/systemd
|
2020-05-26 02:31:06 +02:00
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.2`:
|
2020-03-21 12:30:25 +01:00
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
2020-05-26 02:31:06 +02:00
|
|
|
- name: opensuse-leap-151-3000-3-py3
|
|
|
|
driver:
|
|
|
|
image: netmanagers/salt-3000.3-py3:opensuse-leap-15.1
|
|
|
|
run_command: /usr/lib/systemd/systemd
|
|
|
|
# Workaround to avoid intermittent failures on `opensuse-leap-15.1`:
|
|
|
|
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
|
|
|
transport:
|
|
|
|
max_ssh_sessions: 1
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: amazonlinux-2-3000-3-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py3:amazonlinux-2
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: ubuntu-1804-3000-3-py2
|
2019-10-01 17:24:04 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py2:ubuntu-18.04
|
2020-05-14 08:13:33 +02:00
|
|
|
- name: ubuntu-1604-3000-3-py2
|
2020-05-01 08:36:27 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-3000.3-py2:ubuntu-16.04
|
2019-09-17 23:56:38 +02:00
|
|
|
|
|
|
|
## SALT `2019.2`
|
2019-10-29 22:40:51 +01:00
|
|
|
- name: debian-10-2019-2-py3
|
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:debian-10
|
2019-09-17 23:56:38 +02:00
|
|
|
- name: debian-9-2019-2-py3
|
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:debian-9
|
2019-09-17 23:56:38 +02:00
|
|
|
- name: ubuntu-1804-2019-2-py3
|
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:ubuntu-18.04
|
2020-05-01 08:36:27 +02:00
|
|
|
- name: ubuntu-1604-2019-2-py3
|
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:ubuntu-16.04
|
2019-10-29 22:40:51 +01:00
|
|
|
- name: centos-8-2019-2-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:centos-8
|
2020-05-01 08:36:27 +02:00
|
|
|
- name: centos-7-2019-2-py3
|
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:centos-7
|
2020-03-21 12:30:25 +01:00
|
|
|
- name: amazonlinux-2-2019-2-py3
|
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py3:amazonlinux-2
|
2020-05-01 08:36:27 +02:00
|
|
|
- name: centos-6-2019-2-py2
|
2020-03-21 12:30:25 +01:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py2:centos-6
|
2020-03-21 12:30:25 +01:00
|
|
|
run_command: /sbin/init
|
2020-05-01 08:36:27 +02:00
|
|
|
- name: amazonlinux-1-2019-2-py2
|
2020-03-21 12:30:25 +01:00
|
|
|
driver:
|
2020-06-15 17:59:57 +02:00
|
|
|
image: saltimages/salt-2019.2-py2:amazonlinux-1
|
2020-05-01 08:36:27 +02:00
|
|
|
run_command: /sbin/init
|
2019-03-27 13:07:06 +01:00
|
|
|
|
|
|
|
provisioner:
|
|
|
|
name: salt_solo
|
2019-09-23 18:04:55 +02:00
|
|
|
log_level: debug
|
2019-09-17 23:56:38 +02:00
|
|
|
salt_install: none
|
2019-03-27 13:07:06 +01:00
|
|
|
require_chef: false
|
|
|
|
formula: salt
|
|
|
|
salt_copy_filter:
|
|
|
|
- .kitchen
|
|
|
|
- .git
|
|
|
|
|
|
|
|
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
|
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
|
|
|
# cli, documentation, html, progress, json, json-min, json-rspec, junit
|
2019-03-27 13:07:06 +01:00
|
|
|
reporter:
|
|
|
|
- cli
|
|
|
|
|
|
|
|
suites:
|
2020-03-21 12:30:25 +01:00
|
|
|
- name: v3000-py3
|
|
|
|
includes:
|
2020-05-14 08:13:33 +02:00
|
|
|
- debian-10-3000-3-py3
|
|
|
|
- debian-9-3000-3-py3
|
|
|
|
- ubuntu-1804-3000-3-py3
|
|
|
|
- centos-8-3000-3-py3
|
|
|
|
- centos-7-3000-3-py3
|
|
|
|
- fedora-31-3000-3-py3
|
2020-05-26 02:31:06 +02:00
|
|
|
- opensuse-leap-152-3000-3-py3
|
2020-05-26 02:31:06 +02:00
|
|
|
- opensuse-leap-151-3000-3-py3
|
2020-05-14 08:13:33 +02:00
|
|
|
- amazonlinux-2-3000-3-py3
|
2020-03-21 12:30:25 +01:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt.pkgrepo
|
|
|
|
- salt.master
|
|
|
|
- salt.minion
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt
|
|
|
|
- v3000-py3
|
|
|
|
pillars_from_files:
|
|
|
|
salt.sls: test/salt/pillar/salt.sls
|
|
|
|
v3000-py3.sls: test/salt/pillar/v3000-py3.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/v3000-py3
|
|
|
|
- name: v3000-py2
|
|
|
|
includes:
|
2020-05-14 08:13:33 +02:00
|
|
|
- ubuntu-1804-3000-3-py2
|
|
|
|
- ubuntu-1604-3000-3-py2
|
2020-03-21 12:30:25 +01:00
|
|
|
provisioner:
|
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt.pkgrepo
|
|
|
|
- salt.master
|
|
|
|
- salt.minion
|
|
|
|
pillars:
|
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt
|
|
|
|
- v3000-py2
|
|
|
|
pillars_from_files:
|
|
|
|
salt.sls: test/salt/pillar/salt.sls
|
|
|
|
v3000-py2.sls: test/salt/pillar/v3000-py2.sls
|
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- path: test/integration/v3000-py2
|
2019-09-17 23:56:38 +02:00
|
|
|
- name: v201902-py3
|
2019-03-27 13:07:06 +01:00
|
|
|
includes:
|
2019-10-29 22:40:51 +01:00
|
|
|
- debian-10-2019-2-py3
|
2019-09-17 23:56:38 +02:00
|
|
|
- debian-9-2019-2-py3
|
|
|
|
- ubuntu-1804-2019-2-py3
|
2020-05-01 08:36:27 +02:00
|
|
|
- ubuntu-1604-2019-2-py3
|
2019-10-29 22:40:51 +01:00
|
|
|
- centos-8-2019-2-py3
|
2020-05-01 08:36:27 +02:00
|
|
|
- centos-7-2019-2-py3
|
2020-02-13 11:35:02 +01:00
|
|
|
- amazonlinux-2-2019-2-py3
|
2019-03-27 13:07:06 +01:00
|
|
|
provisioner:
|
2019-09-17 23:56:38 +02:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt.pkgrepo
|
|
|
|
- salt.master
|
|
|
|
- salt.minion
|
2019-03-27 13:07:06 +01:00
|
|
|
pillars:
|
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
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt
|
2019-09-17 23:56:38 +02:00
|
|
|
- v201902-py3
|
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
|
|
|
pillars_from_files:
|
|
|
|
salt.sls: test/salt/pillar/salt.sls
|
2019-09-17 23:56:38 +02:00
|
|
|
v201902-py3.sls: test/salt/pillar/v201902-py3.sls
|
2019-03-27 13:07:06 +01:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
2019-09-17 23:56:38 +02:00
|
|
|
- path: test/integration/v201902-py3
|
|
|
|
- name: v201902-py2
|
2019-03-27 13:07:06 +01:00
|
|
|
includes:
|
2020-05-01 08:36:27 +02:00
|
|
|
- centos-6-2019-2-py2
|
|
|
|
- amazonlinux-1-2019-2-py2
|
2019-03-27 13:07:06 +01:00
|
|
|
provisioner:
|
2019-09-17 23:56:38 +02:00
|
|
|
state_top:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt.pkgrepo
|
|
|
|
- salt.master
|
|
|
|
- salt.minion
|
2019-03-27 13:07:06 +01:00
|
|
|
pillars:
|
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
|
|
|
top.sls:
|
|
|
|
base:
|
|
|
|
'*':
|
|
|
|
- salt
|
2019-09-17 23:56:38 +02:00
|
|
|
- v201902-py2
|
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
|
|
|
pillars_from_files:
|
|
|
|
salt.sls: test/salt/pillar/salt.sls
|
2019-09-17 23:56:38 +02:00
|
|
|
v201902-py2.sls: test/salt/pillar/v201902-py2.sls
|
2019-03-27 13:07:06 +01:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
2019-09-17 23:56:38 +02:00
|
|
|
- path: test/integration/v201902-py2
|