From f1bc7531c51c8015353e291c0c26fca333cb07b6 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 26 Mar 2026 15:24:27 -0700 Subject: [PATCH] Add /tmp emptyDir mount for pyroscope.ebpf symbol cache pyroscope.ebpf creates /tmp/symb-cache at startup. Nix-built container images have a read-only root filesystem, so /tmp needs an emptyDir volume mount. Co-Authored-By: Claude Opus 4.6 (1M context) --- argocd/manifests/alloy-profiling-ringtail/daemonset.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml b/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml index ee97a0a..b3dbabf 100644 --- a/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml +++ b/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml @@ -44,6 +44,8 @@ spec: mountPath: /etc/alloy - name: data mountPath: /var/lib/alloy/data + - name: tmp + mountPath: /tmp securityContext: privileged: true tolerations: @@ -54,3 +56,5 @@ spec: name: alloy-profiling-config - name: data emptyDir: {} + - name: tmp + emptyDir: {}