mirror of
https://github.com/michaelthomson0797/fleet-infra.git
synced 2026-02-04 21:09:58 +00:00
update immich again
This commit is contained in:
@@ -16,67 +16,19 @@ spec:
|
|||||||
timeout: 5m
|
timeout: 5m
|
||||||
releaseName: immich
|
releaseName: immich
|
||||||
values:
|
values:
|
||||||
## This chart relies on the common library chart from bjw-s
|
|
||||||
## You can find it at https://github.com/bjw-s/helm-charts/tree/main/charts/library/common
|
|
||||||
## Refer there for more detail about the supported values
|
|
||||||
|
|
||||||
# These entries are shared between all the Immich components
|
|
||||||
|
|
||||||
env:
|
|
||||||
REDIS_HOSTNAME: '{{ printf "%s-redis-master" .Release.Name }}'
|
|
||||||
DB_HOSTNAME: "{{ .Release.Name }}-postgresql"
|
|
||||||
DB_USERNAME: "{{ .Values.postgresql.global.postgresql.auth.username }}"
|
|
||||||
DB_DATABASE_NAME: "{{ .Values.postgresql.global.postgresql.auth.database }}"
|
|
||||||
# -- You should provide your own secret outside of this helm-chart and use `postgresql.global.postgresql.auth.existingSecret` to provide credentials to the postgresql instance
|
|
||||||
DB_PASSWORD: "{{ .Values.postgresql.global.postgresql.auth.password }}"
|
|
||||||
IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'
|
|
||||||
|
|
||||||
image:
|
|
||||||
tag: v1.91.4
|
|
||||||
|
|
||||||
immich:
|
immich:
|
||||||
persistence:
|
persistence:
|
||||||
# Main data store for all photos shared between different components.
|
|
||||||
library:
|
library:
|
||||||
# Automatically creating the library volume is not supported by this chart
|
|
||||||
# You have to specify an existing PVC to use
|
|
||||||
existingClaim: immich-data
|
existingClaim: immich-data
|
||||||
|
|
||||||
# Dependencies
|
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
|
||||||
repository: tensorchord/pgvecto-rs
|
|
||||||
tag: pg14-v0.1.11
|
|
||||||
global:
|
|
||||||
postgresql:
|
|
||||||
auth:
|
|
||||||
username: immich
|
|
||||||
database: immich
|
|
||||||
password: immich
|
|
||||||
primary:
|
|
||||||
initdb:
|
|
||||||
scripts:
|
|
||||||
create-extensions.sql: |
|
|
||||||
CREATE EXTENSION cube;
|
|
||||||
CREATE EXTENSION earthdistance;
|
|
||||||
CREATE EXTENSION vectors;
|
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: true
|
||||||
architecture: standalone
|
|
||||||
auth:
|
|
||||||
enabled: false
|
|
||||||
|
|
||||||
# Immich components
|
|
||||||
|
|
||||||
server:
|
server:
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
|
||||||
repository: ghcr.io/immich-app/immich-server
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
main:
|
main:
|
||||||
enabled: true
|
enabled: true
|
||||||
@@ -93,24 +45,5 @@ spec:
|
|||||||
- immich.michaelthomson.dev
|
- immich.michaelthomson.dev
|
||||||
secretName: letsencrypt-wildcard-cert-michaelthomson.dev
|
secretName: letsencrypt-wildcard-cert-michaelthomson.dev
|
||||||
|
|
||||||
microservices:
|
|
||||||
enabled: true
|
|
||||||
image:
|
|
||||||
repository: ghcr.io/immich-app/immich-server
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
machine-learning:
|
machine-learning:
|
||||||
enabled: false
|
enabled: false
|
||||||
image:
|
|
||||||
repository: ghcr.io/immich-app/immich-machine-learning
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
env:
|
|
||||||
TRANSFORMERS_CACHE: /cache
|
|
||||||
persistence:
|
|
||||||
cache:
|
|
||||||
enabled: true
|
|
||||||
size: 10Gi
|
|
||||||
# Optional: Set this to pvc to avoid downloading the ML models every start.
|
|
||||||
type: emptyDir
|
|
||||||
accessMode: ReadWriteMany
|
|
||||||
# storageClass: your-class
|
|
||||||
|
|||||||
Reference in New Issue
Block a user