From bd4e29331f433f9f8ce6c4d752a6f8516bae2c1e Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 30 Apr 2026 10:27:12 -0500 Subject: [PATCH] ops: mount HRRR data NFS share at /data Adds the same NFS volume that microwaveprop uses (10.0.15.103:/data) so towerops can read the shared HRRR grids and render maps from them. --- k8s/deployment.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 291c6126..d5aa8657 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -232,3 +232,11 @@ spec: timeoutSeconds: 2 successThreshold: 3 # Require 3 consecutive successes (15s) before marking ready failureThreshold: 2 # Allow 1 failure before marking not ready + volumeMounts: + - name: data + mountPath: /data + volumes: + - name: data + nfs: + server: 10.0.15.103 + path: /data