feat(Immich): update immich to v1.106.3 (#23206)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | altran1502/immich-machine-learning | minor | `v1.105.1-openvino` -> `v1.106.2-openvino` | | altran1502/immich-machine-learning | minor | `v1.105.1-cuda` -> `v1.106.2-cuda` | | altran1502/immich-machine-learning | minor | `v1.105.1` -> `v1.106.2` | | altran1502/immich-server | minor | `v1.105.1` -> `v1.106.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQwNC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=--> --------- Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
parent
da877741a3
commit
2ee57d7620
|
@ -7,7 +7,7 @@ annotations:
|
||||||
truecharts.org/min_helm_version: "3.11"
|
truecharts.org/min_helm_version: "3.11"
|
||||||
truecharts.org/train: stable
|
truecharts.org/train: stable
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 1.105.1
|
appVersion: 1.106.3
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
version: 24.0.1
|
version: 24.0.1
|
||||||
|
@ -41,4 +41,4 @@ sources:
|
||||||
- https://hub.docker.com/r/altran1502/immich-machine-learning
|
- https://hub.docker.com/r/altran1502/immich-machine-learning
|
||||||
- https://hub.docker.com/r/altran1502/immich-server
|
- https://hub.docker.com/r/altran1502/immich-server
|
||||||
type: application
|
type: application
|
||||||
version: 16.0.1
|
version: 17.0.0
|
||||||
|
|
|
@ -5,20 +5,22 @@ configmap:
|
||||||
server-config:
|
server-config:
|
||||||
enabled: true
|
enabled: true
|
||||||
data:
|
data:
|
||||||
SERVER_PORT: {{ .Values.service.main.ports.main.port | quote }}
|
IMMICH_PORT: {{ .Values.service.main.ports.main.port | quote }}
|
||||||
|
IMMICH_WORKERS_INCLUDE: api
|
||||||
|
|
||||||
micro-config:
|
micro-config:
|
||||||
enabled: true
|
enabled: true
|
||||||
data:
|
data:
|
||||||
MICROSERVICES_PORT: {{ .Values.service.microservices.ports.microservices.port | quote }}
|
IMMICH_PORT: {{ .Values.service.microservices.ports.microservices.port | quote }}
|
||||||
REVERSE_GEOCODING_DUMP_DIRECTORY: {{ .Values.persistence.microcache.targetSelector.microservices.microservices.mountPath }}
|
REVERSE_GEOCODING_DUMP_DIRECTORY: {{ .Values.persistence.microcache.targetSelector.microservices.microservices.mountPath }}
|
||||||
|
IMMICH_WORKERS_EXCLUDE: api
|
||||||
|
|
||||||
{{- if .Values.immich.enable_ml }}
|
{{- if .Values.immich.enable_ml }}
|
||||||
ml-config:
|
ml-config:
|
||||||
enabled: true
|
enabled: true
|
||||||
data:
|
data:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
MACHINE_LEARNING_PORT: {{ .Values.service.machinelearning.ports.machinelearning.port | quote }}
|
IMMICH_PORT: {{ .Values.service.machinelearning.ports.machinelearning.port | quote }}
|
||||||
MACHINE_LEARNING_CACHE_FOLDER: {{ .Values.persistence.mlcache.targetSelector.machinelearning.machinelearning.mountPath }}
|
MACHINE_LEARNING_CACHE_FOLDER: {{ .Values.persistence.mlcache.targetSelector.machinelearning.machinelearning.mountPath }}
|
||||||
TRANSFORMERS_CACHE: {{ .Values.persistence.mlcache.targetSelector.machinelearning.machinelearning.mountPath }}
|
TRANSFORMERS_CACHE: {{ .Values.persistence.mlcache.targetSelector.machinelearning.machinelearning.mountPath }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -28,7 +30,7 @@ configmap:
|
||||||
enabled: true
|
enabled: true
|
||||||
data:
|
data:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
LOG_LEVEL: {{ .Values.immich.log_level }}
|
IMMICH_LOG_LEVEL: {{ .Values.immich.log_level }}
|
||||||
IMMICH_MACHINE_LEARNING_ENABLED: {{ .Values.immich.enable_ml | quote }}
|
IMMICH_MACHINE_LEARNING_ENABLED: {{ .Values.immich.enable_ml | quote }}
|
||||||
{{- if .Values.immich.enable_ml }}
|
{{- if .Values.immich.enable_ml }}
|
||||||
IMMICH_MACHINE_LEARNING_URL: {{ printf "http://%v-machinelearning:%v" $fname .Values.service.machinelearning.ports.machinelearning.port }}
|
IMMICH_MACHINE_LEARNING_URL: {{ printf "http://%v-machinelearning:%v" $fname .Values.service.machinelearning.ports.machinelearning.port }}
|
||||||
|
|
|
@ -13,10 +13,6 @@ podSpec:
|
||||||
enabled: true
|
enabled: true
|
||||||
primary: true
|
primary: true
|
||||||
imageSelector: image
|
imageSelector: image
|
||||||
command: /bin/sh
|
|
||||||
args:
|
|
||||||
- -c
|
|
||||||
- /usr/src/app/start-microservices.sh
|
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
disableS6Caps: true
|
disableS6Caps: true
|
||||||
|
@ -30,14 +26,23 @@ podSpec:
|
||||||
probes:
|
probes:
|
||||||
readiness:
|
readiness:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: tcp
|
type: exec
|
||||||
port: {{ .Values.service.microservices.ports.microservices.port }}
|
command:
|
||||||
|
- npm
|
||||||
|
- run
|
||||||
|
- healthcheck
|
||||||
liveness:
|
liveness:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: tcp
|
type: exec
|
||||||
port: {{ .Values.service.microservices.ports.microservices.port }}
|
command:
|
||||||
|
- npm
|
||||||
|
- run
|
||||||
|
- healthcheck
|
||||||
startup:
|
startup:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: tcp
|
type: exec
|
||||||
port: {{ .Values.service.microservices.ports.microservices.port }}
|
command:
|
||||||
|
- npm
|
||||||
|
- run
|
||||||
|
- healthcheck
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
@ -4,10 +4,6 @@ primary: true
|
||||||
imageSelector: image
|
imageSelector: image
|
||||||
resources:
|
resources:
|
||||||
excludeExtra: true
|
excludeExtra: true
|
||||||
command: /bin/sh
|
|
||||||
args:
|
|
||||||
- -c
|
|
||||||
- /usr/src/app/start-server.sh
|
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
disableS6Caps: true
|
disableS6Caps: true
|
||||||
|
@ -21,17 +17,23 @@ envFrom:
|
||||||
probes:
|
probes:
|
||||||
liveness:
|
liveness:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: http
|
type: exec
|
||||||
path: /api/server-info/ping
|
command:
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
- npm
|
||||||
|
- run
|
||||||
|
- healthcheck
|
||||||
readiness:
|
readiness:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: http
|
type: exec
|
||||||
path: /api/server-info/ping
|
command:
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
- npm
|
||||||
|
- run
|
||||||
|
- healthcheck
|
||||||
startup:
|
startup:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: http
|
type: exec
|
||||||
path: /api/server-info/ping
|
command:
|
||||||
port: {{ .Values.service.main.ports.main.port }}
|
- npm
|
||||||
|
- run
|
||||||
|
- healthcheck
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
image:
|
image:
|
||||||
repository: altran1502/immich-server
|
repository: altran1502/immich-server
|
||||||
tag: v1.105.1@sha256:658b40420d7a39d6eb34c797cec8d36ff315f5adb168301aaf27dc4eafc8e228
|
tag: v1.106.3
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
mlImage:
|
mlImage:
|
||||||
repository: altran1502/immich-machine-learning
|
repository: altran1502/immich-machine-learning
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v1.105.1@sha256:2e2736ba2f2270485c0b6fa33eee66ea0b2279b70b92ea838a015c4d5289c9f0
|
tag: v1.106.3
|
||||||
|
|
||||||
mlCudaImage:
|
mlCudaImage:
|
||||||
repository: altran1502/immich-machine-learning
|
repository: altran1502/immich-machine-learning
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v1.105.1-cuda@sha256:6c34f6cfc85b1a34336e8eb2cf5ce14ec585395e404d4566826e8bf16e1a441b
|
tag: v1.106.3-cuda
|
||||||
|
|
||||||
mlOpenvinoImage:
|
mlOpenvinoImage:
|
||||||
repository: altran1502/immich-machine-learning
|
repository: altran1502/immich-machine-learning
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v1.105.1-openvino@sha256:7675497197b8600316d942444fb9f88106a91091b5011a806988a4afad0dc0cb
|
tag: v1.106.3-openvino
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
container:
|
container:
|
||||||
|
|
Loading…
Reference in New Issue