summaryrefslogtreecommitdiff
path: root/roles/streaming/companion/templates/pod-spec.yml.j2
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2024-03-16 21:32:54 +0100
committerChristian Pointner <equinox@spreadspace.org>2024-03-16 21:32:54 +0100
commit4e9b4def3078408493bddf57176162cc9380ebfd (patch)
treee2a5580d66ecb273fd5a4f5580797591ef20b3f1 /roles/streaming/companion/templates/pod-spec.yml.j2
parentadd ch-companion-raspi (diff)
companion: generate ssh keypair to be used with ssh plugin
Diffstat (limited to 'roles/streaming/companion/templates/pod-spec.yml.j2')
-rw-r--r--roles/streaming/companion/templates/pod-spec.yml.j29
1 files changed, 8 insertions, 1 deletions
diff --git a/roles/streaming/companion/templates/pod-spec.yml.j2 b/roles/streaming/companion/templates/pod-spec.yml.j2
index f01637fe..3be3e488 100644
--- a/roles/streaming/companion/templates/pod-spec.yml.j2
+++ b/roles/streaming/companion/templates/pod-spec.yml.j2
@@ -12,6 +12,9 @@ containers:
mountPath: /dev/bus/usb
- name: data
mountPath: /companion
+ - name: secrets
+ mountPath: /secrets
+ readOnly: yes
volumes:
- name: dev-usb
hostPath:
@@ -19,4 +22,8 @@ volumes:
- name: data
hostPath:
type: Directory
- path: "{{ companion_basepath }}"
+ path: "{{ companion_basepath }}/data"
+- name: secrets
+ hostPath:
+ type: Directory
+ path: "{{ companion_basepath }}/secrets"