Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
driver:
name: docker
platforms:
- name: ms-${CI_PIPELINE_ID:-default}
environment:
HOSTALIASES: /etc/hosts.aliases
image: registry.ubicast.net/docker/debian-systemd:buster
command: /lib/systemd/systemd
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
- /run
groups:
- mediaserver
- postgres
- celerity
- live
- mirismanager
- mediaimport
- msmonitor
- name: mw-${CI_PIPELINE_ID:-default}
environment:
HOSTALIASES: /etc/hosts.aliases
image: registry.ubicast.net/docker/debian-systemd:buster
command: /lib/systemd/systemd
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
- /run
groups:
- mediaworker
provisioner:
name: ansible
options:
D: true
env:
ANSIBLE_ROLES_PATH: ../../roles
ANSIBLE_LIBRARY: ../../library
ANSIBLE_ACTION_PLUGINS: ../../plugins/action
ANSIBLE_PYTHON_INTERPRETER: /usr/bin/python3
SKYREACH_SYSTEM_KEY: ${SKYREACH_SYSTEM_KEY_STD}
verifier:
name: testinfra
options:
verbose: true
...