Last active 1724581366

Revision fd4c28fb52c96f2dbdcb92cf821ed39df9bd9199

immich.yaml Raw
1apiVersion: v1
2kind: Pod
3metadata:
4 name: immich
5 labels:
6 app: immich
7 annotations:
8spec:
9
10 ## Volume definitions
11 volumes:
12 - hostPath:
13 ## Equivalent of UPLOAD_LOCATION in docker-compose
14 path: /path/to/immich/data
15 type: Directory
16 name: immich-data-host
17 - hostPath:
18 path: /path/to/immich/model-cache
19 type: Directory
20 name: immich-model-cache-host
21 - name: immich-psql
22 persistentVolumeClaim:
23 claimName: immich-psql
24 - hostPath:
25 path: /path/to/immich/redis
26 type: Directory
27 name: immich-redis-host
28 - hostPath:
29 path: /path/to/nextcloud/app/data/nc-user/files
30 type: Directory
31 readOnly: true
32 name: nextcloud-nc-user
33
34 ## Container definitions
35 containers:
36 - name: server
37 image: ghcr.io/immich-app/immich-server:v1.112.1
38 env:
39 - name: IMMICH_WORKERS_INCLUDE
40 value: api
41 envFrom:
42 - configMapRef:
43 name: immich-config
44 optional: false
45 securityContext:
46 capabilities:
47 drop:
48 - CAP_MKNOD
49 - CAP_NET_RAW
50 - CAP_AUDIT_WRITE
51 volumeMounts:
52 - mountPath: /usr/src/app/upload
53 name: immich-data-host
54 - mountPath: /nextcloud/nc-user
55 name: nextcloud-nc-user
56 readOnly: true
57
58
59 - name: microservices
60 image: ghcr.io/immich-app/immich-server:v1.112.1
61 env:
62 - name: IMMICH_WORKERS_EXCLUDE
63 value: api
64 envFrom:
65 - configMapRef:
66 name: immich-config
67 optional: false
68 securityContext:
69 capabilities:
70 drop:
71 - CAP_MKNOD
72 - CAP_NET_RAW
73 - CAP_AUDIT_WRITE
74 volumeMounts:
75 - mountPath: /usr/src/app/upload
76 name: immich-data-host
77 - mountPath: /nextcloud/nc-user
78 name: nextcloud-nc-user
79 readOnly: true
80
81 - name: machine-learning
82 image: ghcr.io/immich-app/immich-machine-learning:v1.112.1
83 envFrom:
84 - configMapRef:
85 name: immich-config
86 optional: false
87 securityContext:
88 capabilities:
89 drop:
90 - CAP_MKNOD
91 - CAP_NET_RAW
92 - CAP_AUDIT_WRITE
93 volumeMounts:
94 - mountPath: /cache
95 name: immich-model-cache-host
96 - mountPath: /nextcloud/nc-user
97 name: nextcloud-nc-user
98 readOnly: true
99
100 - name: psql
101 image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0
102 resource: {}
103 securityContext:
104 capabilities:
105 drop:
106 - CAP_MKNOD
107 - CAP_NET_RAW
108 - CAP_AUDIT_WRITE
109 volumeMounts:
110 - mountPath: /var/lib/postgresql/data
111 name: immich-psql
112 env:
113 - name: POSTGRES_USER
114 valueFrom:
115 configMapKeyRef:
116 name: immich-config
117 key: DB_USERNAME
118 - name: POSTGRES_PASSWORD
119 valueFrom:
120 configMapKeyRef:
121 name: immich-config
122 key: DB_PASSWORD
123 - name: POSTGRES_DB
124 valueFrom:
125 configMapKeyRef:
126 name: immich-config
127 key: DB_DATABASE_NAME
128 - name: POSTGRES_INITDB_ARGS
129 value: "--data-checksums"
130 args: ["-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"]
131
132 - name: redis
133 image: docker.io/library/redis:6.2-alpine
134 args:
135 - redis-server
136 - --save
137 - 60
138 - 1
139 - --loglevel
140 - warning
141 resources: {}
142 securityContext:
143 capabilities:
144 drop:
145 - CAP_MKNOD
146 - CAP_NET_RAW
147 - CAP_AUDIT_WRITE
148 volumeMounts:
149 - mountPath: /data
150 name: immich-redis-host
151
152 restartPolicy: Always
153status: {}
154