File tree 5 files changed +19
-20
lines changed
5 files changed +19
-20
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
skip_list:
3
3
- experimental # all rules tagged as experimental
4
- - fqcn-builtins
Original file line number Diff line number Diff line change 1
1
---
2
2
3
3
- name : " Remove {{ goss_test_directory }}"
4
- file :
4
+ ansible.builtin. file :
5
5
path : " {{ goss_test_directory }}"
6
6
state : absent
7
7
8
8
- name : Remove goss
9
- file :
9
+ ansible.builtin. file :
10
10
path : " {{ goss_path }}/goss"
11
11
state : absent
12
12
13
13
- name : Remove dgoss
14
- file :
14
+ ansible.builtin. file :
15
15
path : " {{ goss_path }}/dgoss"
16
16
state : absent
Original file line number Diff line number Diff line change 1
1
---
2
2
3
3
- name : Install ca-certificates
4
- apt :
4
+ ansible.builtin. apt :
5
5
name : ca-certificates
6
6
register : network_access
7
7
until : network_access is success
13
13
14
14
- name : Install EPEL
15
15
when : ansible_os_family == 'RedHat'
16
- yum :
16
+ ansible.builtin. yum :
17
17
name : epel-release
18
18
state : present
19
19
register : epel_install
23
23
24
24
- name : Install jmespath
25
25
# when: ansible_os_family == 'RedHat'
26
- package :
26
+ ansible.builtin. package :
27
27
name : python3-jmespath
28
28
state : present
29
29
update_cache : true
Original file line number Diff line number Diff line change 9
9
- name : Get goss binary
10
10
become : false
11
11
delegate_to : localhost
12
- get_url :
12
+ ansible.builtin. get_url :
13
13
url : " {{ goss_url }}"
14
14
checksum : " sha256:{{ goss[goss_version].sha256sum }}"
15
15
validate_certs : false
25
25
- name : Ensure we have local copy of goss
26
26
become : false
27
27
delegate_to : localhost
28
- stat :
28
+ ansible.builtin. stat :
29
29
path : /tmp/goss
30
30
register : goss_bin
31
31
tags :
32
32
- base_goss
33
33
34
34
- name : Copy goss to remote
35
- copy :
35
+ ansible.builtin. copy :
36
36
src : " /tmp/goss"
37
37
dest : " {{ goss_path }}/goss"
38
38
owner : " {{ goss_user }}"
44
44
45
45
46
46
- name : Get goss binary directly
47
- get_url :
47
+ ansible.builtin. get_url :
48
48
url : " {{ goss_url }}"
49
49
checksum : " sha256:{{ goss[goss_version].sha256sum }}"
50
50
validate_certs : false
61
61
- base_goss
62
62
63
63
- name : Copy dgoss to remote
64
- copy :
64
+ ansible.builtin. copy :
65
65
src : " dgoss"
66
66
dest : " {{ goss_path }}/dgoss"
67
67
mode : 0755
71
71
- base_goss
72
72
73
73
- name : " Ensure presence of directory {{ goss_test_directory }}"
74
- file :
74
+ ansible.builtin. file :
75
75
path : " {{ goss_test_directory }}"
76
76
state : directory
77
77
owner : " {{ goss_user }}"
81
81
- base_goss
82
82
83
83
- name : Copy test_goss.yaml to remote
84
- template :
84
+ ansible.builtin. template :
85
85
src : test_goss.yaml.j2
86
86
dest : " {{ goss_test_directory }}/test_goss.yaml"
87
87
mode : 0644
88
88
tags :
89
89
- base_goss
90
90
91
91
- name : Copy goss.yaml to remote
92
- template :
92
+ ansible.builtin. template :
93
93
src : goss.yaml.j2
94
94
dest : " {{ goss_test_directory }}/goss.yaml"
95
95
mode : 0644
Original file line number Diff line number Diff line change 1
1
---
2
2
3
3
- name : Ensure we have remote copy of goss
4
- stat :
4
+ ansible.builtin. stat :
5
5
path : " {{ goss_dst }}"
6
6
register : goss_bin_remote
7
7
tags :
15
15
- validate
16
16
block :
17
17
- name : Execute Goss tests
18
- command : " {{ goss_dst }} validate -f json"
18
+ ansible.builtin. command : " {{ goss_dst }} validate -f json"
19
19
args :
20
20
chdir : " {{ goss_test_directory }}"
21
21
register : test_results
24
24
check_mode : false
25
25
26
26
- name : Show failing Goss tests
27
- debug :
27
+ ansible.builtin. debug :
28
28
msg : " Goss test failed"
29
29
loop : " {{ test_results.stdout | from_json | json_query(query) }}"
30
30
vars :
33
33
failed_when : test_results.rc != 0
34
34
35
35
- name : Execute Goss tests
36
- command : " {{ goss_dst }} -g {{ goss_test_directory }}/goss.yaml validate -f {{ goss_format }}"
36
+ ansible.builtin. command : " {{ goss_dst }} -g {{ goss_test_directory }}/goss.yaml validate -f {{ goss_format }}"
37
37
changed_when : false
38
38
register : test_results
39
39
40
40
- name : Report about the Goss results
41
- debug :
41
+ ansible.builtin. debug :
42
42
msg : " {{ test_results.stdout_lines }}"
43
43
when : goss_report | bool
You can’t perform that action at this time.
0 commit comments