Skip to content

Commit 0b9356a

Browse files
updated yaml notation (as list items)
1 parent 7cb96dd commit 0b9356a

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

meta/main.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,17 @@ galaxy_info:
1313

1414
platforms:
1515
- name: EL
16-
versions: ["8", "9"]
16+
versions:
17+
- "8"
18+
- "9"
1719
- name: Debian
18-
versions: ["bullseye", "bookworm"]
20+
versions:
21+
- "bullseye"
22+
- "bookworm"
1923
- name: Ubuntu
20-
versions: ["focal", "jammy", "noble"]
24+
versions:
25+
- "focal"
26+
- "jammy"
27+
- "noble"
2128

2229
dependencies: []

molecule/default/molecule.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
dependency:
32
name: galaxy
43
enabled: false
@@ -11,33 +10,35 @@ platforms:
1110
image: quay.io/centos/centos:stream9
1211
pre_build_image: false
1312
command: /sbin/init
14-
privileged: true
13+
tmpfs:
14+
- "/tmp:exec"
15+
- "/run:rw,noexec,nosuid,nodev"
1516
volumes:
1617
- /sys/fs/cgroup:/sys/fs/cgroup:rw
17-
- /run
18-
- /run/lock
1918
cgroupns_mode: host
2019

2120
- name: opencast-postgresql-debian
2221
image: docker.io/debian:latest
2322
pre_build_image: false
2423
command: /sbin/init
2524
privileged: true
25+
tmpfs:
26+
- "/tmp:exec"
27+
- "/run:rw,noexec,nosuid,nodev"
2628
volumes:
2729
- /sys/fs/cgroup:/sys/fs/cgroup:rw
28-
- /run
29-
- /run/lock
3030
cgroupns_mode: host
3131

3232
- name: opencast-postgresql-ubuntu
3333
image: docker.io/ubuntu:latest
3434
pre_build_image: false
3535
command: /sbin/init
3636
privileged: true
37+
tmpfs:
38+
- "/tmp:exec"
39+
- "/run:rw,noexec,nosuid,nodev"
3740
volumes:
3841
- /sys/fs/cgroup:/sys/fs/cgroup:rw
39-
- /run
40-
- /run/lock
4142
cgroupns_mode: host
4243

4344
lint: |

0 commit comments

Comments
 (0)