From 0dd6b2929241727c860b43ef16921c2c4f4ebd85 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Wed, 9 Sep 2026 09:16:41 -0400 Subject: [PATCH] frigate fix cache and dshm --- apps/frigate/deployment.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/frigate/deployment.yaml b/apps/frigate/deployment.yaml index 6b7239a..8e6f4da 100644 --- a/apps/frigate/deployment.yaml +++ b/apps/frigate/deployment.yaml @@ -44,7 +44,9 @@ spec: - mountPath: /media/frigate name: frigate-media - mountPath: /tmp/cache - name: frigate-media + name: frigate-cache + - mountPath: /dev/shm + name: frigate-dshm volumes: - name: frigate-config persistentVolumeClaim: @@ -58,7 +60,11 @@ spec: - name: frigate-media persistentVolumeClaim: claimName: frigate-media - - name: cache + - name: frigate-cache + emptyDir: + medium: Memory + sizeLimit: 1Gi + - name: frigate-dshm emptyDir: medium: Memory sizeLimit: 1Gi