File tree 5 files changed +16
-22
lines changed
5 files changed +16
-22
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,10 @@ jobs:
47
47
- distro : debian10
48
48
- distro : debian11
49
49
- distro : debian12
50
- - distro : ubuntu1604
51
- ansible-version : ' >=2.10, <2.11'
52
- - distro : ubuntu1604
53
50
- distro : ubuntu1804
51
+ ansible-version : ' >=9, <10'
54
52
- distro : ubuntu2004
53
+ - distro : ubuntu2204
55
54
56
55
steps :
57
56
- name : Check out the codebase
65
64
python-version : ' 3.x'
66
65
67
66
- name : Install test dependencies
68
- run : pip install 'ansible${{ matrix.ansible-version }}' molecule[docker] docker
69
-
67
+ run : |
68
+ pip install 'ansible${{ matrix.ansible-version }}' molecule-plugins[docker] docker
70
69
- name : Run Molecule tests
71
70
run : |
72
71
molecule test
Original file line number Diff line number Diff line change 4
4
role = File . basename ( File . expand_path ( File . dirname ( __FILE__ ) ) )
5
5
6
6
boxes = [
7
- {
8
- :name => "ubuntu-1604" ,
9
- :box => "bento/ubuntu-16.04" ,
10
- :ip => '10.0.0.12' ,
11
- :cpu => "50" ,
12
- :ram => "256"
13
- } ,
14
7
{
15
8
:name => "ubuntu-1804" ,
16
9
:box => "bento/ubuntu-18.04" ,
@@ -23,7 +16,14 @@ boxes = [
23
16
:box => "bento/ubuntu-20.04" ,
24
17
:ip => '10.0.0.14' ,
25
18
:cpu => "50" ,
26
- :ram => "384"
19
+ :ram => "512"
20
+ } ,
21
+ {
22
+ :name => "ubuntu-2204" ,
23
+ :box => "bento/ubuntu-22.04" ,
24
+ :ip => '10.0.0.15' ,
25
+ :cpu => "50" ,
26
+ :ram => "512"
27
27
} ,
28
28
{
29
29
:name => "debian-10" ,
Original file line number Diff line number Diff line change 1
1
# meta file
2
2
---
3
3
galaxy_info :
4
- namespace : oefenweb
4
+ author : oefenweb
5
5
role_name : ufw
6
- author : Mischa ter Smitten
7
6
company : Oefenweb.nl B.V.
8
7
description : Set up ufw in Debian-like systems
9
8
license : MIT
10
9
min_ansible_version : 2.10.0
11
10
platforms :
12
11
- name : Ubuntu
13
12
versions :
14
- - xenial
15
13
- bionic
16
14
- focal
15
+ - jammy
17
16
- name : Debian
18
17
versions :
19
18
- buster
Original file line number Diff line number Diff line change 1
1
---
2
- collections :
3
- - name : community.docker
4
- version : ' >=1.2.0,<2'
5
- - name : community.general
6
- version : ' >=2,<3'
2
+ collections : []
Original file line number Diff line number Diff line change 5
5
name : docker
6
6
platforms :
7
7
- name : instance
8
- image : " geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu1604 }-ansible:latest"
8
+ image : " geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2004 }-ansible:latest"
9
9
command : ${MOLECULE_DOCKER_COMMAND:-""}
10
10
volumes :
11
11
- /sys/fs/cgroup:/sys/fs/cgroup:rw
You can’t perform that action at this time.
0 commit comments