Fix volume mount paths and update Postgres image version in immich-db.yml
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 13s

This commit is contained in:
2026-01-12 23:41:08 +05:30
parent 332d2c1a01
commit 3362349f91

View File

@@ -18,13 +18,13 @@ spec:
initContainers: initContainers:
- name: cleanup - name: cleanup
image: busybox image: busybox
command: ['sh', '-c', 'rm -rf /var/lib/postgresql/data/lost+found'] command: ['sh', '-c', 'rm -rf /var/lib/postgresql/lost+found']
volumeMounts: volumeMounts:
- name: immich-db - name: immich-db
mountPath: /var/lib/postgresql/data mountPath: /var/lib/postgresql/
containers: containers:
- name: immich-psql - name: immich-psql
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 image: ghcr.io/immich-app/postgres:18-vectorchord0.5.3-pgvector0.8.1
ports: ports:
- containerPort: 5432 - containerPort: 5432
name: postgres name: postgres
@@ -41,7 +41,7 @@ spec:
- name: POSTGRES_INITDB_ARGS - name: POSTGRES_INITDB_ARGS
value: "--data-checksums" value: "--data-checksums"
volumeMounts: volumeMounts:
- mountPath: /var/lib/postgresql/data - mountPath: /var/lib/postgresql
name: immich-db name: immich-db
volumeClaimTemplates: volumeClaimTemplates:
- metadata: - metadata: