This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/immich-app/immich-server](https://github.com/immich-app/immich) | patch | `v2.5.2` → `v2.5.3` | --- ### Release Notes <details> <summary>immich-app/immich (ghcr.io/immich-app/immich-server)</summary> ### [`v2.5.3`](https://github.com/immich-app/immich/releases/tag/v2.5.3) [Compare Source](https://github.com/immich-app/immich/compare/v2.5.2...v2.5.3) #### What's Changed ##### 🐛 Bug fixes - chore: remove random code snippet by [@​jrasm91](https://github.com/jrasm91) in [#​25677](https://github.com/immich-app/immich/pull/25677) - fix: reset and unsaved change states in editor by [@​bwees](https://github.com/bwees) in [#​25588](https://github.com/immich-app/immich/pull/25588) - fix: no notification if release check is disabled by [@​jrasm91](https://github.com/jrasm91) in [#​25688](https://github.com/immich-app/immich/pull/25688) - fix(mobile): hide latest version if disabled by [@​uhthomas](https://github.com/uhthomas) in [#​25691](https://github.com/immich-app/immich/pull/25691) - fix(web): enable asset viewer navigation across memory boundaries by [@​midzelis](https://github.com/midzelis) in [#​25741](https://github.com/immich-app/immich/pull/25741) - fix: upload progress bar flickering by [@​alextran1502](https://github.com/alextran1502) in [#​25829](https://github.com/immich-app/immich/pull/25829) - fix: prevent stale values in edit user form after save by [@​michelheusschen](https://github.com/michelheusschen) in [#​25859](https://github.com/immich-app/immich/pull/25859) - fix: prevent album page get rebuilt when resuming app by [@​alextran1502](https://github.com/alextran1502) in [#​25862](https://github.com/immich-app/immich/pull/25862) - fix: prevent backspace from accidentally triggering delete modals by [@​michelheusschen](https://github.com/michelheusschen) in [#​25858](https://github.com/immich-app/immich/pull/25858) - fix: metadata extraction race condition by [@​danieldietzler](https://github.com/danieldietzler) in [#​25866](https://github.com/immich-app/immich/pull/25866) - fix: reset zoom when navigating between assets by [@​michelheusschen](https://github.com/michelheusschen) in [#​25863](https://github.com/immich-app/immich/pull/25863) ##### 📚 Documentation - docs(openapi): Add descriptions to OpenAPI specification by [@​timonrieger](https://github.com/timonrieger) in [#​25185](https://github.com/immich-app/immich/pull/25185) - fix(docs): clarify supported vector version by [@​mmomjian](https://github.com/mmomjian) in [#​25753](https://github.com/immich-app/immich/pull/25753) **Full Changelog**: <https://github.com/immich-app/immich/compare/v2.5.2...v2.5.3> </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:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjIiLCJ1cGRhdGVkSW5WZXIiOiI0My4wLjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImltYWdlIl19--> Reviewed-on: #3705 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
247 lines
6.6 KiB
YAML
247 lines
6.6 KiB
YAML
immich:
|
|
controllers:
|
|
main:
|
|
type: deployment
|
|
replicas: 1
|
|
strategy: Recreate
|
|
revisionHistoryLimit: 3
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/immich-app/immich-server
|
|
tag: v2.5.3
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
- name: TZ
|
|
value: US/Central
|
|
- name: IMMICH_TELEMETRY_INCLUDE
|
|
value: all
|
|
- name: IMMICH_CONFIG_FILE
|
|
value: /config/immich.json
|
|
- name: REDIS_HOSTNAME
|
|
value: redis-replication-immich-master
|
|
- name: DB_VECTOR_EXTENSION
|
|
value: vectorchord
|
|
- name: DB_HOSTNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: immich-postgresql-18-cluster-app
|
|
key: host
|
|
- name: DB_DATABASE_NAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: immich-postgresql-18-cluster-app
|
|
key: dbname
|
|
- name: DB_PORT
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: immich-postgresql-18-cluster-app
|
|
key: port
|
|
- name: DB_USERNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: immich-postgresql-18-cluster-app
|
|
key: user
|
|
- name: DB_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: immich-postgresql-18-cluster-app
|
|
key: password
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /api/server/ping
|
|
port: 2283
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
timeoutSeconds: 1
|
|
failureThreshold: 3
|
|
readiness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /api/server/ping
|
|
port: 2283
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
timeoutSeconds: 1
|
|
failureThreshold: 3
|
|
startup:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /api/server/ping
|
|
port: 2283
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
timeoutSeconds: 1
|
|
failureThreshold: 30
|
|
resources:
|
|
limits:
|
|
gpu.intel.com/i915: 1
|
|
requests:
|
|
gpu.intel.com/i915: 1
|
|
cpu: 10m
|
|
memory: 512Mi
|
|
service:
|
|
main:
|
|
controller: main
|
|
ports:
|
|
http:
|
|
port: 2283
|
|
targetPort: 2283
|
|
protocol: TCP
|
|
metrics-api:
|
|
port: 8081
|
|
targetPort: 8081
|
|
protocol: TCP
|
|
metrics-ms:
|
|
port: 8082
|
|
targetPort: 8082
|
|
protocol: TCP
|
|
serviceMonitor:
|
|
main:
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: immich
|
|
app.kubernetes.io/instance: immich
|
|
serviceName: '{{ include "bjw-s.common.lib.chart.names.fullname" $ }}'
|
|
endpoints:
|
|
- port: metrics-api
|
|
interval: 3m
|
|
scrapeTimeout: 1m
|
|
path: /metrics
|
|
- port: metrics-ms
|
|
interval: 3m
|
|
scrapeTimeout: 1m
|
|
path: /metrics
|
|
route:
|
|
main:
|
|
kind: HTTPRoute
|
|
parentRefs:
|
|
- group: gateway.networking.k8s.io
|
|
kind: Gateway
|
|
name: traefik-gateway
|
|
namespace: traefik
|
|
hostnames:
|
|
- immich.alexlebens.net
|
|
rules:
|
|
- backendRefs:
|
|
- group: ''
|
|
kind: Service
|
|
name: immich
|
|
port: 2283
|
|
weight: 100
|
|
matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
type: secret
|
|
name: immich-config-secret
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /config/immich.json
|
|
readOnly: true
|
|
mountPropagation: None
|
|
subPath: immich.json
|
|
data:
|
|
forceRename: immich
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 50Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /usr/src/app/upload
|
|
readOnly: false
|
|
postgres-18-cluster:
|
|
mode: recovery
|
|
cluster:
|
|
image:
|
|
repository: ghcr.io/tensorchord/cloudnative-vectorchord
|
|
tag: 18.0-0.5.3
|
|
postgresql:
|
|
parameters:
|
|
shared_buffers: 256MB
|
|
shared_preload_libraries:
|
|
- "vchord.so"
|
|
initdb:
|
|
postInitSQL:
|
|
- CREATE EXTENSION IF NOT EXISTS "vector";
|
|
- CREATE EXTENSION IF NOT EXISTS "vchord" CASCADE;
|
|
- CREATE EXTENSION IF NOT EXISTS "cube" CASCADE;
|
|
- CREATE EXTENSION IF NOT EXISTS "earthdistance" CASCADE;
|
|
recovery:
|
|
method: objectStore
|
|
objectStore:
|
|
index: 1
|
|
backup:
|
|
objectStore:
|
|
- name: garage-local
|
|
index: 1
|
|
destinationBucket: postgres-backups
|
|
externalSecretCredentialPath: /garage/home-infra/postgres-backups
|
|
isWALArchiver: true
|
|
# - name: garage-remote
|
|
# index: 1
|
|
# destinationBucket: postgres-backups
|
|
# externalSecretCredentialPath: /garage/home-infra/postgres-backups
|
|
# retentionPolicy: "90d"
|
|
# data:
|
|
# compression: bzip2
|
|
# - name: external
|
|
# index: 1
|
|
# endpointURL: https://nyc3.digitaloceanspaces.com
|
|
# destinationBucket: postgres-backups-ce540ddf106d186bbddca68a
|
|
# externalSecretCredentialPath: /garage/home-infra/postgres-backups
|
|
# isWALArchiver: false
|
|
scheduledBackups:
|
|
- name: live-backup
|
|
suspend: false
|
|
immediate: true
|
|
schedule: "0 0 0 * * *"
|
|
backupName: garage-local
|
|
# - name: weekly-backup
|
|
# suspend: true
|
|
# immediate: true
|
|
# schedule: "0 0 4 * * SAT"
|
|
# backupName: garage-remote
|
|
# - name: daily-backup
|
|
# suspend: true
|
|
# immediate: true
|
|
# schedule: "0 0 0 * * *"
|
|
# backupName: external
|
|
|
|
redis-replication:
|
|
redisReplication:
|
|
clusterSize: 3
|
|
sentinel:
|
|
enabled: true
|
|
volsync-target-data:
|
|
pvcTarget: immich
|
|
local:
|
|
enabled: true
|
|
schedule: 28 8 * * *
|
|
restic:
|
|
cacheCapacity: 10Gi
|
|
remote:
|
|
enabled: true
|
|
schedule: 28 10 * * *
|
|
restic:
|
|
cacheCapacity: 10Gi
|
|
external:
|
|
enabled: true
|
|
schedule: 28 9 * * *
|
|
restic:
|
|
cacheCapacity: 10Gi
|