diff options
| -rw-r--r-- | f3s/navidrome/helm-chart/templates/deployment.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/f3s/navidrome/helm-chart/templates/deployment.yaml b/f3s/navidrome/helm-chart/templates/deployment.yaml index c7ddbf7..5a3862e 100644 --- a/f3s/navidrome/helm-chart/templates/deployment.yaml +++ b/f3s/navidrome/helm-chart/templates/deployment.yaml @@ -5,6 +5,11 @@ metadata: namespace: services spec: replicas: 1 + # SQLite DB on RWO PVC: only one writer at a time. Use Recreate so the + # old pod releases the DB lock before the new pod starts; otherwise the + # new pod blocks indefinitely on the SQLite open. + strategy: + type: Recreate selector: matchLabels: app: navidrome |
