fix(neuron-prod): add PVC and volume mount for neuron-license SQLite data

The license server writes its database to /data/neuron-license.db.
The deployment had no volume, causing CrashLoopBackOff on first start.
This commit is contained in:
Will Anderson
2026-04-24 03:13:39 -05:00
parent d66062b4cc
commit 9bf99bdd8e
2 changed files with 20 additions and 0 deletions
@@ -10,3 +10,16 @@ spec:
resources:
requests:
storage: 10Gi
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: neuron-license-data
namespace: neuron-prod
spec:
storageClassName: local-path
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi