Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

immich: bump version and adapt endpoints #2880

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/ix-dev/community/immich/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Immich is a self-hosted photo and video backup solution directly fr
annotations:
title: Immich
type: application
version: 4.0.19
version: 4.0.20
apiVersion: v2
appVersion: 1.117.0
kubeVersion: '>=1.16.0-0'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- define "immich.machinelearning.workload" -}}
{{- $fullname := (include "ix.v1.common.lib.chart.names.fullname" $) -}}
{{- $url := printf "http://%v:%v/api/server-info/ping" $fullname .Values.immichNetwork.webuiPort -}}
{{- $url := printf "http://%v:%v/api/server/ping" $fullname .Values.immichNetwork.webuiPort -}}
{{- $img := "mlImage" -}}
{{- with .Values.immichConfig.mlImageType -}}
{{- $img = . -}}
Expand Down
6 changes: 3 additions & 3 deletions library/ix-dev/community/immich/templates/_immich-server.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ workload:
liveness:
enabled: true
type: http
path: /api/server-info/ping
path: /api/server/ping
port: {{ .Values.immichNetwork.webuiPort }}
readiness:
enabled: true
type: http
path: /api/server-info/ping
path: /api/server/ping
port: {{ .Values.immichNetwork.webuiPort }}
startup:
enabled: true
type: http
path: /api/server-info/ping
path: /api/server/ping
port: {{ .Values.immichNetwork.webuiPort }}
initContainers:
{{- include "ix.v1.common.app.postgresWait" (dict "name" "postgres-wait"
Expand Down
12 changes: 6 additions & 6 deletions library/ix-dev/community/immich/values.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
image:
repository: altran1502/immich-server
pullPolicy: IfNotPresent
tag: v1.117.0
tag: v1.118.2

mlImage:
repository: altran1502/immich-machine-learning
pullPolicy: IfNotPresent
tag: v1.117.0
tag: v1.118.2

mlCudaImage:
repository: altran1502/immich-machine-learning
pullPolicy: IfNotPresent
tag: v1.117.0-cuda
tag: v1.118.2-cuda

mlOpenvinoImage:
repository: altran1502/immich-machine-learning
pullPolicy: IfNotPresent
tag: v1.117.0-openvino
tag: v1.118.2-openvino

pgvectorImage:
repository: tensorchord/pgvecto-rs
Expand All @@ -31,11 +31,11 @@ resources:
immichGPU: {}

immichConfig:
publicLoginMessage: ''
publicLoginMessage: ""
enableML: true
mlImageType: mlImage
logLevel: log
huggingFaceEndpoint: ''
huggingFaceEndpoint: ""

immichNetwork:
webuiPort: 30041
Expand Down
Loading