diff options
Diffstat (limited to 'f3s/beets-art/helm-chart')
| -rw-r--r-- | f3s/beets-art/helm-chart/templates/configmap.yaml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/f3s/beets-art/helm-chart/templates/configmap.yaml b/f3s/beets-art/helm-chart/templates/configmap.yaml index 887def5..499a00f 100644 --- a/f3s/beets-art/helm-chart/templates/configmap.yaml +++ b/f3s/beets-art/helm-chart/templates/configmap.yaml @@ -45,8 +45,20 @@ data: fetchart: auto: yes cautious: yes - cover_names: cover front folder album - sources: coverart itunes amazon albumart + # YAML lists, not space-separated strings: beets 2.x rejects + # `sources: coverart itunes ...` with UnknownPairError and the + # whole fetchart plugin fails to load (silently degrades to "no art + # ever fetched"). Same shape used for cover_names defensively. + cover_names: + - cover + - front + - folder + - album + sources: + - coverart + - itunes + - amazon + - albumart maxwidth: 1200 enforce_ratio: no store_source: yes |
