This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/booklore-app/booklore](https://github.com/booklore-app/booklore) | patch | `v1.13.1` -> `v1.13.2` | --- ### Release Notes <details> <summary>booklore-app/booklore (ghcr.io/booklore-app/booklore)</summary> ### [`v1.13.2`](https://github.com/booklore-app/booklore/releases/tag/v1.13.2) [Compare Source](https://github.com/booklore-app/booklore/compare/v1.13.1...v1.13.2) #### 🌟 What's New in v1.13.2 #### 🚀 New Features - Add sort preference option for Magic Shelf names in the left sidebar ([#​1749](https://github.com/booklore-app/booklore/issues/1749)) by [@​adityachandelgit](https://github.com/adityachandelgit) - Feature: filter mode preference ([#​1739](https://github.com/booklore-app/booklore/issues/1739)) by [@​Muppetteer](https://github.com/Muppetteer) - Add a user-facing option to enable or disable series view ([#​1748](https://github.com/booklore-app/booklore/issues/1748)) by [@​adityachandelgit](https://github.com/adityachandelgit) #### ✨ Enhancements - fix(metadata): disable merging of moods and tags during metadata updates ([#​1743](https://github.com/booklore-app/booklore/issues/1743)) by [@​balazs-szucs](https://github.com/balazs-szucs) - fix(epub): improve date parsing to support year-only formats and add tests ([#​1735](https://github.com/booklore-app/booklore/issues/1735)) by [@​balazs-szucs](https://github.com/balazs-szucs) - feat(opds): Sort OPDS Feed by addedOn Desc ([#​1691](https://github.com/booklore-app/booklore/issues/1691)) by [@​WorldTeacher](https://github.com/WorldTeacher) - refactor(metadata): consider locked, but empty or null metadata valid ([#​1729](https://github.com/booklore-app/booklore/issues/1729)) by [@​balazs-szucs](https://github.com/balazs-szucs) #### 🎨 UI Tweaks - Visually indicate the active menu item in the left sidebar ([#​1738](https://github.com/booklore-app/booklore/issues/1738)) by [@​adityachandelgit](https://github.com/adityachandelgit) - Align the layout to be consistent throughout all dialogs ([#​1737](https://github.com/booklore-app/booklore/issues/1737)) by [@​adityachandelgit](https://github.com/adityachandelgit) #### 🐛 Bug Fixes - fix(amazon): improve localization of Amazon Parser ([#​1706](https://github.com/booklore-app/booklore/issues/1706)) by [@​balazs-szucs](https://github.com/balazs-szucs) - Add filter mode to querystring ([#​1728](https://github.com/booklore-app/booklore/issues/1728)) by [@​Muppetteer](https://github.com/Muppetteer) - Fix race conditions between Bookdrop and Monitoring Service when importing multiple files ([#​1709](https://github.com/booklore-app/booklore/issues/1709)) by [@​piffio](https://github.com/piffio) - Re-add "description" to epub metadata extraction ([#​1727](https://github.com/booklore-app/booklore/issues/1727)) by [@​beedaddy](https://github.com/beedaddy) ##### 🐳 Docker Images - **Docker Hub:** `booklore/booklore:v1.13.2` - **GitHub Container Registry:** `ghcr.io/booklore-app/booklore:v1.13.2` **Full Changelog**: <https://github.com/booklore-app/booklore/compare/v1.13.1...v1.13.2> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zOS4xIiwidXBkYXRlZEluVmVyIjoiNDIuMzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwiaW1hZ2UiXX0=--> Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/2291 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
156 lines
3.9 KiB
YAML
156 lines
3.9 KiB
YAML
booklore:
|
|
controllers:
|
|
main:
|
|
type: deployment
|
|
replicas: 1
|
|
strategy: Recreate
|
|
revisionHistoryLimit: 3
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/booklore-app/booklore
|
|
tag: v1.13.2
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
- name: TZ
|
|
value: America/Chicago
|
|
- name: DATABASE_URL
|
|
value: jdbc:mariadb://booklore-mariadb-cluster-primary.booklore:3306/booklore
|
|
- name: DATABASE_USERNAME
|
|
value: booklore
|
|
- name: DATABASE_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: booklore-database-secret
|
|
key: password
|
|
- name: BOOKLORE_PORT
|
|
value: 6060
|
|
- name: SWAGGER_ENABLED
|
|
value: false
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 128Mi
|
|
service:
|
|
main:
|
|
controller: main
|
|
ports:
|
|
http:
|
|
port: 80
|
|
targetPort: 6060
|
|
protocol: HTTP
|
|
persistence:
|
|
config:
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 5Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /app/data
|
|
readOnly: false
|
|
data:
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 10Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /data
|
|
readOnly: false
|
|
books-import:
|
|
type: emptyDir
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /bookdrop
|
|
readOnly: false
|
|
ingest:
|
|
existingClaim: booklore-books-import-nfs-storage
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /bookdrop/ingest
|
|
readOnly: false
|
|
mariadb-cluster:
|
|
mariadb:
|
|
rootPasswordSecretKeyRef:
|
|
generate: false
|
|
name: booklore-database-secret
|
|
key: password
|
|
storage:
|
|
size: 5Gi
|
|
replicas: 3
|
|
galera:
|
|
enabled: true
|
|
databases:
|
|
- name: booklore
|
|
characterSet: utf8
|
|
collate: utf8_general_ci
|
|
cleanupPolicy: Delete
|
|
requeueInterval: 10h
|
|
users:
|
|
- name: booklore
|
|
passwordSecretKeyRef:
|
|
name: booklore-database-secret
|
|
key: password
|
|
host: '%'
|
|
cleanupPolicy: Delete
|
|
requeueInterval: 10h
|
|
retryInterval: 30s
|
|
grants:
|
|
- name: booklore
|
|
privileges:
|
|
- "ALL PRIVILEGES"
|
|
database: "booklore"
|
|
table: "*"
|
|
username: booklore
|
|
grantOption: true
|
|
host: '%'
|
|
cleanupPolicy: Delete
|
|
requeueInterval: 10h
|
|
retryInterval: 30s
|
|
physicalBackups:
|
|
- name: backup-external
|
|
schedule:
|
|
cron: "0 0 * * 0"
|
|
suspend: false
|
|
immediate: true
|
|
compression: gzip
|
|
maxRetention: 720h
|
|
storage:
|
|
s3:
|
|
bucket: mariadb-backups-b230a2f5aecf080a4b372c08
|
|
prefix: cl01tl/booklore
|
|
endpoint: nyc3.digitaloceanspaces.com
|
|
region: us-east-1
|
|
accessKeyIdSecretKeyRef:
|
|
name: booklore-mariadb-cluster-backup-secret-external
|
|
key: access
|
|
secretAccessKeySecretKeyRef:
|
|
name: booklore-mariadb-cluster-backup-secret-external
|
|
key: secret
|
|
tls:
|
|
enabled: true
|
|
- name: backup-garage
|
|
schedule:
|
|
cron: "0 0 * * *"
|
|
suspend: false
|
|
immediate: true
|
|
compression: gzip
|
|
maxRetention: 360h
|
|
storage:
|
|
s3:
|
|
bucket: mariadb-backups
|
|
prefix: cl01tl/booklore
|
|
endpoint: garage-main.garage:3900
|
|
region: us-east-1
|
|
accessKeyIdSecretKeyRef:
|
|
name: booklore-mariadb-cluster-backup-secret-garage
|
|
key: access
|
|
secretAccessKeySecretKeyRef:
|
|
name: booklore-mariadb-cluster-backup-secret-garage
|
|
key: secret
|