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
@@ -27,6 +27,9 @@ spec:
envFrom:
- secretRef:
name: neuron-prod-secrets
volumeMounts:
- name: data
mountPath: /data
resources:
requests:
cpu: 100m
@@ -48,3 +51,7 @@ spec:
initialDelaySeconds: 15
periodSeconds: 10
failureThreshold: 3
volumes:
- name: data
persistentVolumeClaim:
claimName: neuron-license-data