diff --git a/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml b/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml index b3dbabf..6c8b09a 100644 --- a/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml +++ b/argocd/manifests/alloy-profiling-ringtail/daemonset.yaml @@ -46,6 +46,12 @@ spec: mountPath: /var/lib/alloy/data - name: tmp mountPath: /tmp + - name: host-proc + mountPath: /host/proc + readOnly: true + - name: host-sys + mountPath: /host/sys + readOnly: true securityContext: privileged: true tolerations: @@ -58,3 +64,9 @@ spec: emptyDir: {} - name: tmp emptyDir: {} + - name: host-proc + hostPath: + path: /proc + - name: host-sys + hostPath: + path: /sys