diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-31 12:24:29 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-31 12:24:29 +0200 |
| commit | e0add7fb708c0fc0c6d76b256b809ba47948c859 (patch) | |
| tree | 7db52a877a93e65935ab58678fe2ad297e330446 | |
| parent | 2af2c26599fc1276174bb80ed8a3c210ca772437 (diff) | |
Fix database.xml structure - use correct DatabaseConfigurationOptions and LockingBehavior
Amp-Thread-ID: https://ampcode.com/threads/T-019c1392-78a3-7440-9d95-1a1b2fd7dfec
Co-authored-by: Amp <amp@ampcode.com>
| -rw-r--r-- | f3s/jellyfin/helm-chart/templates/configmap.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/configmap.yaml b/f3s/jellyfin/helm-chart/templates/configmap.yaml index 6248f7d..1f4637c 100644 --- a/f3s/jellyfin/helm-chart/templates/configmap.yaml +++ b/f3s/jellyfin/helm-chart/templates/configmap.yaml @@ -6,9 +6,10 @@ metadata: data: database.xml: | <?xml version="1.0" encoding="utf-8"?> - <SqliteOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> - <LockMode>Optimistic</LockMode> - </SqliteOptions> + <DatabaseConfigurationOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + <DatabaseType>Jellyfin-SQLite</DatabaseType> + <LockingBehavior>Optimistic</LockingBehavior> + </DatabaseConfigurationOptions> network.xml: | <?xml version="1.0" encoding="utf-8"?> <NetworkConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
