Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit caf459e

Browse files
committed
add official support for CentOS8 (#114)
[minor] release
1 parent c7733d3 commit caf459e

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

meta/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ galaxy_info:
1717
- name: EL
1818
versions:
1919
- 7
20+
- 8
2021
- name: Fedora
2122
versions:
2223
- 30

molecule/alternative/molecule.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ platforms:
3636
privileged: true
3737
volumes:
3838
- /sys/fs/cgroup:/sys/fs/cgroup:ro
39+
- name: centos8
40+
image: paulfantom/centos-molecule:8
41+
docker_host: "${DOCKER_HOST:-unix://var/run/docker.sock}"
42+
privileged: true
43+
volumes:
44+
- /sys/fs/cgroup:/sys/fs/cgroup:ro
45+
groups:
46+
- python3
3947
- name: fedora
4048
image: paulfantom/fedora-molecule:30
4149
docker_host: "${DOCKER_HOST:-unix://var/run/docker.sock}"

molecule/default/molecule.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ platforms:
3636
privileged: true
3737
volumes:
3838
- /sys/fs/cgroup:/sys/fs/cgroup:ro
39+
- name: centos8
40+
image: paulfantom/centos-molecule:8
41+
docker_host: "${DOCKER_HOST:-unix://var/run/docker.sock}"
42+
privileged: true
43+
volumes:
44+
- /sys/fs/cgroup:/sys/fs/cgroup:ro
45+
groups:
46+
- python3
3947
- name: fedora
4048
image: paulfantom/fedora-molecule:30
4149
docker_host: "${DOCKER_HOST:-unix://var/run/docker.sock}"

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
with_first_found:
55
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
66
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
7-
- "{{ ansible_distribution_file_variety | lower }}.yml"
7+
- "{{ ansible_distribution_file_variety | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
88
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
99
- "{{ ansible_distribution | lower }}.yml"
1010
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_version.split('.')[0] }}.yml"
File renamed without changes.

0 commit comments

Comments
 (0)