File tree 9 files changed +41
-16
lines changed
9 files changed +41
-16
lines changed Original file line number Diff line number Diff line change 32
32
- name : Set up Python
33
33
uses : actions/setup-python@v2
34
34
with :
35
- python-version : ' 3.x'
36
- - name : Install dependencies
37
- run : pip3 install ansible molecule[docker] docker pytest testinfra
35
+ python-version : ' 3.11'
36
+ - name : Install requirements
37
+ run : sudo apt-get install docker python3-pip
38
+ - name : Install molecule
39
+ # https://www.jeffgeerling.com/blog/2024/newer-versions-ansible-dont-work-rhel-8[]
40
+ run : " pip3 install 'ansible-core<2.17' molecule molecule-plugins[docker] pytest testinfra"
38
41
- name : Run Molecule
39
42
run : molecule test
40
43
env :
Original file line number Diff line number Diff line change 4
4
5
5
Configurable ansible role for setting up a nginx webserver on a Linux server. Works with
6
6
7
- - openSUSE Leap 15.3
8
- - openSUSE Leap 15.4
9
- - Debian Buster
7
+ - openSUSE Leap 15.5
8
+ - openSUSE Leap 15.6
9
+ - Debian Buster (11)
10
10
11
11
## Role Variables
12
12
--------------
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ galaxy_info:
14
14
platforms :
15
15
- name : opensuse
16
16
versions :
17
- - 15.3
18
- - 15.4
17
+ - 15.5
18
+ - 15.6
19
19
- name : debian
20
20
versions :
21
21
- bullseye
Original file line number Diff line number Diff line change 1
- FROM registry.opensuse.org/opensuse/leap:15.4
1
+ FROM registry.opensuse.org/opensuse/leap:15.5
2
2
3
3
# Install systemd and development tools, clear cache
4
4
RUN zypper in -y systemd systemd-sysvinit firewalld python3 python3-firewall curl && rm -rf /var/cache/*
Original file line number Diff line number Diff line change
1
+ FROM registry.opensuse.org/opensuse/leap:15.6
2
+
3
+ # Install systemd and development tools, clear cache
4
+ RUN zypper in -y systemd systemd-sysvinit firewalld python3 python3-firewall curl && rm -rf /var/cache/*
5
+
6
+ # Start container with systemd
7
+ ENTRYPOINT ["/usr/sbin/init"]
Original file line number Diff line number Diff line change @@ -4,9 +4,18 @@ dependency:
4
4
driver :
5
5
name : docker
6
6
platforms :
7
- - name : leap15_4
8
- image : registry.opensuse.org/opensuse/leap:15.4
9
- dockerfile : Dockerfile.leap15_4
7
+ - name : leap15_5
8
+ image : registry.opensuse.org/opensuse/leap:15.5
9
+ dockerfile : Dockerfile.leap15_5
10
+ command : ${MOLECULE_DOCKER_COMMAND:-"/usr/sbin/init"}
11
+ privileged : true
12
+ cgroupns : host
13
+ tmpfs :
14
+ - /run
15
+ - /tmp
16
+ - name : leap15_6
17
+ image : registry.opensuse.org/opensuse/leap:15.6
18
+ dockerfile : Dockerfile.leap15_6
10
19
command : ${MOLECULE_DOCKER_COMMAND:-"/usr/sbin/init"}
11
20
privileged : true
12
21
cgroupns : host
@@ -35,9 +44,14 @@ provisioner:
35
44
name : ansible
36
45
inventory :
37
46
host_vars :
38
- leap15_4 :
47
+ leap15_5 :
48
+ vhosts_dir : " /etc/nginx/vhosts.d"
49
+ deploy_nginx_config : true
50
+ ansible_python_interpreter : " /usr/bin/python3"
51
+ leap15_6 :
39
52
vhosts_dir : " /etc/nginx/vhosts.d"
40
53
deploy_nginx_config : true
54
+ ansible_python_interpreter : " /usr/bin/python3"
41
55
bullseye :
42
56
vhosts_dir : " /etc/nginx/sites-enabled"
43
57
deploy_nginx_config : false
Original file line number Diff line number Diff line change
1
+ Debian_11.yml
Original file line number Diff line number Diff line change 1
1
---
2
- # openSUSE Leap 15.4 specific variables
2
+ # openSUSE Leap 15.5 specific variables
3
3
4
4
# # Software packages
5
5
Original file line number Diff line number Diff line change 1
1
---
2
- # openSUSE Leap 15.3 specific variables
2
+ # openSUSE Leap 15.6 specific variables
3
3
4
4
# # Software packages
5
5
6
- packages : ['nginx', 'nginx-module-brotli' ]
6
+ packages : ['nginx']
7
7
nginx_service : " nginx"
8
8
9
9
# # OS-Specific directories
You can’t perform that action at this time.
0 commit comments