From 9d0001355cfa98ce370a942b8976963c8f77baec Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 24 Mar 2026 15:45:13 -0700 Subject: [PATCH] Fix NFS mount path for shared reports share Mount /volume1/reports (share root) not /volume1/reports/prowler. Prowler writes to /reports/prowler/ subdirectory within the mount. This allows other services to share the same NFS share. Co-Authored-By: Claude Opus 4.6 (1M context) --- argocd/manifests/prowler/cronjob.yaml | 2 +- argocd/manifests/prowler/pv-nfs.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/argocd/manifests/prowler/cronjob.yaml b/argocd/manifests/prowler/cronjob.yaml index e9d6844..c78257e 100644 --- a/argocd/manifests/prowler/cronjob.yaml +++ b/argocd/manifests/prowler/cronjob.yaml @@ -23,7 +23,7 @@ spec: - --output-formats - html,csv,json-ocsf - --output-directory - - /reports + - /reports/prowler volumeMounts: - name: reports mountPath: /reports diff --git a/argocd/manifests/prowler/pv-nfs.yaml b/argocd/manifests/prowler/pv-nfs.yaml index 9f76b22..aa81405 100644 --- a/argocd/manifests/prowler/pv-nfs.yaml +++ b/argocd/manifests/prowler/pv-nfs.yaml @@ -19,4 +19,4 @@ spec: storageClassName: "" nfs: server: sifaka - path: /volume1/reports/prowler + path: /volume1/reports