summaryrefslogtreecommitdiff
path: root/roles/streaming/player/templates/pod-spec.yml.j2
blob: 46175a411dcb65bff51e630ab9050044db83ddc3 (plain) (blame)
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
containers:
- name: player
  image: registry.gitlab.com/spreadspace/docker/ffmpeg:{{ player_ffmpeg_image_version }}
  imagePullPolicy: Always
  command:
  - /usr/bin/ffmpeg
  args:
{% for param in player_input %}
  - '{{ param }}'
{% endfor %}
{% for param in player_output %}
  - '{{ param }}'
{% endfor %}
  terminationGracePeriodSeconds: 0
  securityContext:
    privileged: true
  volumeMounts:
  - name: decklink-device
    mountPath: /dev/blackmagic
  - name: decklink-libs
    subPath: libDeckLinkAPI.so
    mountPath: /usr/lib/libDeckLinkAPI.so
    readOnly: true
  - name: decklink-libs
    subPath: libDeckLinkPreviewAPI.so
    mountPath: /usr/lib/libDeckLinkPreviewAPI.so
    readOnly: true
  - name: decklink-libs
    subPath: blackmagic
    mountPath: /usr/lib/blackmagic
    readOnly: true

volumes:
- name: decklink-device
  hostPath:
    path: /dev/blackmagic
- name: decklink-libs
  hostPath:
    type: Directory
    path: /usr/lib/