Skip to content

Commit 5afa1f5

Browse files
committed
Update role to Leap 15.6
Updates the role to Leap 15.5 and 15.6 and remove references to Leap 15.4. Also fix the CI to work with newer versions on molecule.
1 parent 1e9acd5 commit 5afa1f5

9 files changed

+41
-16
lines changed

.github/workflows/CI.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,12 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v2
3434
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"
3841
- name: Run Molecule
3942
run: molecule test
4043
env:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
Configurable ansible role for setting up a nginx webserver on a Linux server. Works with
66

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)
1010

1111
## Role Variables
1212
--------------

meta/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ galaxy_info:
1414
platforms:
1515
- name: opensuse
1616
versions:
17-
- 15.3
18-
- 15.4
17+
- 15.5
18+
- 15.6
1919
- name: debian
2020
versions:
2121
- bullseye

molecule/default/Dockerfile.leap15_4 molecule/default/Dockerfile.leap15_5

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.opensuse.org/opensuse/leap:15.4
1+
FROM registry.opensuse.org/opensuse/leap:15.5
22

33
# Install systemd and development tools, clear cache
44
RUN zypper in -y systemd systemd-sysvinit firewalld python3 python3-firewall curl && rm -rf /var/cache/*

molecule/default/Dockerfile.leap15_6

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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"]

molecule/default/molecule.yml

+18-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,18 @@ dependency:
44
driver:
55
name: docker
66
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
1019
command: ${MOLECULE_DOCKER_COMMAND:-"/usr/sbin/init"}
1120
privileged: true
1221
cgroupns: host
@@ -35,9 +44,14 @@ provisioner:
3544
name: ansible
3645
inventory:
3746
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:
3952
vhosts_dir: "/etc/nginx/vhosts.d"
4053
deploy_nginx_config: true
54+
ansible_python_interpreter: "/usr/bin/python3"
4155
bullseye:
4256
vhosts_dir: "/etc/nginx/sites-enabled"
4357
deploy_nginx_config: false

vars/Debian_11.10.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Debian_11.yml

vars/openSUSE Leap_15.4.yml vars/openSUSE Leap_15.5.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# openSUSE Leap 15.4 specific variables
2+
# openSUSE Leap 15.5 specific variables
33

44
## Software packages
55

vars/openSUSE Leap_15.3.yml vars/openSUSE Leap_15.6.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
# openSUSE Leap 15.3 specific variables
2+
# openSUSE Leap 15.6 specific variables
33

44
## Software packages
55

6-
packages: ['nginx', 'nginx-module-brotli']
6+
packages: ['nginx']
77
nginx_service: "nginx"
88

99
## OS-Specific directories

0 commit comments

Comments
 (0)