diff options
Diffstat (limited to 'bundles/immich/files/kube.yaml')
| -rw-r--r-- | bundles/immich/files/kube.yaml | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/bundles/immich/files/kube.yaml b/bundles/immich/files/kube.yaml index 12b7c3b..a0ef94a 100644 --- a/bundles/immich/files/kube.yaml +++ b/bundles/immich/files/kube.yaml @@ -66,16 +66,17 @@ spec: podman.io/device=/dev/dri/card0: 1 podman.io/device=/dev/dri/renderD128: 1 limits: - memory: 512Mi + # drop limit here, ive seen the container crash with oom + # memory: 512Mi - name: redis - image: docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8 + image: docker.io/valkey/valkey:9 livenessProbe: exec: command: ["sh", "-c", "redis-cli ping || exit 1"] - name: postgres - image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 + image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0 envFrom: - secretRef: name: immich @@ -85,23 +86,6 @@ spec: volumeMounts: - name: pg-data mountPath: /var/lib/postgresql/data - livenessProbe: - exec: - command: ["pg_isready", "--dbname='$DB_DATABASE_NAME'", "--username='$DB_USERNAME'"] - command: - - docker-entrypoint.sh - - -c - - shared_preload_libraries=vectors.so - - -c - - search_path="$$user", public, vectors - - -c - - logging_collector=on - - -c - - max_wal_size=2GB - - -c - - shared_buffers=512MB - - -c - - wal_compression=on volumes: - name: config |