From 2b699a9f0e031c40139930d82b4a4ca998548a14 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Fri, 9 Feb 2024 00:38:28 +0100 Subject: elevate encoder: fix decklink versions --- roles/streaming/player/templates/pod-spec.yml.j2 | 6 ++++++ roles/streaming/recorder/templates/pod-spec.yml.j2 | 6 ++++++ roles/streaming/streamer/rtmp/templates/pod-spec.yml.j2 | 6 ++++++ 3 files changed, 18 insertions(+) (limited to 'roles/streaming') diff --git a/roles/streaming/player/templates/pod-spec.yml.j2 b/roles/streaming/player/templates/pod-spec.yml.j2 index 8cd6c355..128e20ff 100644 --- a/roles/streaming/player/templates/pod-spec.yml.j2 +++ b/roles/streaming/player/templates/pod-spec.yml.j2 @@ -29,6 +29,9 @@ containers: subPath: blackmagic mountPath: /usr/lib/blackmagic readOnly: true + - name: decklink-etc + mountPath: /etc/blackmagic + readOnly: true {% for name, mount in player_volume_mounts.items() %} - name: {{ name }} mountPath: {{ mount.dest }} @@ -43,6 +46,9 @@ volumes: hostPath: type: Directory path: /usr/lib/ +- name: decklink-etc + hostPath: + path: /etc/blackmagic {% for name, mount in player_volume_mounts.items() %} - name: {{ name }} hostPath: diff --git a/roles/streaming/recorder/templates/pod-spec.yml.j2 b/roles/streaming/recorder/templates/pod-spec.yml.j2 index 8fbeadba..21c57f45 100644 --- a/roles/streaming/recorder/templates/pod-spec.yml.j2 +++ b/roles/streaming/recorder/templates/pod-spec.yml.j2 @@ -38,6 +38,9 @@ containers: subPath: blackmagic mountPath: /usr/lib/blackmagic readOnly: true + - name: decklink-etc + mountPath: /etc/blackmagic + readOnly: true volumes: - name: home @@ -50,3 +53,6 @@ volumes: hostPath: type: Directory path: /usr/lib/ +- name: decklink-etc + hostPath: + path: /etc/blackmagic diff --git a/roles/streaming/streamer/rtmp/templates/pod-spec.yml.j2 b/roles/streaming/streamer/rtmp/templates/pod-spec.yml.j2 index 81058cea..8ec89c5b 100644 --- a/roles/streaming/streamer/rtmp/templates/pod-spec.yml.j2 +++ b/roles/streaming/streamer/rtmp/templates/pod-spec.yml.j2 @@ -59,6 +59,9 @@ containers: subPath: blackmagic mountPath: /usr/lib/blackmagic readOnly: true + - name: decklink-etc + mountPath: /etc/blackmagic + readOnly: true {% for name, forward in streamer_rtmp_forwards.items() %} - name: "forward-{{ name }}" @@ -135,6 +138,9 @@ volumes: hostPath: type: Directory path: /usr/lib/ +- name: decklink-etc + hostPath: + path: /etc/blackmagic {% if streamer_rtmp_recording is defined %} - name: recordings hostPath: -- cgit v1.2.3