upgrade immich to v1.91.2 [ci skip]
This commit is contained in:
parent
ff03c1b8c6
commit
39c8890ca4
2 changed files with 7 additions and 40 deletions
|
|
@ -13,7 +13,7 @@ env:
|
||||||
# # -- 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
|
# # -- 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 }}"
|
# DB_PASSWORD: "{{ .Values.postgresql.global.postgresql.auth.password }}"
|
||||||
# TYPESENSE_ENABLED: "{{ .Values.typesense.enabled }}"
|
# TYPESENSE_ENABLED: "{{ .Values.typesense.enabled }}"
|
||||||
TYPESENSE_ENABLED: "1"
|
# TYPESENSE_ENABLED: "1"
|
||||||
# TYPESENSE_API_KEY: "{{ .Values.typesense.env.TYPESENSE_API_KEY }}"
|
# TYPESENSE_API_KEY: "{{ .Values.typesense.env.TYPESENSE_API_KEY }}"
|
||||||
# TYPESENSE_HOST: '{{ printf "%s-typesense" .Release.Name }}'
|
# TYPESENSE_HOST: '{{ printf "%s-typesense" .Release.Name }}'
|
||||||
# IMMICH_WEB_URL: '{{ printf "http://%s-web:3000" .Release.Name }}'
|
# IMMICH_WEB_URL: '{{ printf "http://%s-web:3000" .Release.Name }}'
|
||||||
|
|
@ -25,7 +25,7 @@ env:
|
||||||
IMMICH_MACHINE_LEARNING_URL: "http://immich-machine-learning.immich.svc.cluster.local:3003"
|
IMMICH_MACHINE_LEARNING_URL: "http://immich-machine-learning.immich.svc.cluster.local:3003"
|
||||||
|
|
||||||
image:
|
image:
|
||||||
tag: v1.88.2
|
tag: v1.91.4
|
||||||
|
|
||||||
immich:
|
immich:
|
||||||
persistence:
|
persistence:
|
||||||
|
|
@ -39,6 +39,9 @@ immich:
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
image:
|
||||||
|
repository: tensorchord/pgvecto-rs
|
||||||
|
tag: pg14-v0.1.11
|
||||||
global:
|
global:
|
||||||
postgresql:
|
postgresql:
|
||||||
auth:
|
auth:
|
||||||
|
|
@ -52,23 +55,6 @@ redis:
|
||||||
auth:
|
auth:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
typesense:
|
|
||||||
enabled: true
|
|
||||||
env:
|
|
||||||
TYPESENSE_DATA_DIR: /tsdata
|
|
||||||
TYPESENSE_API_KEY: typesense
|
|
||||||
persistence:
|
|
||||||
tsdata:
|
|
||||||
# Enabling typesense persistence is recommended to avoid slow reindexing
|
|
||||||
enabled: true
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
# storageClass: storage-class
|
|
||||||
image:
|
|
||||||
repository: docker.io/typesense/typesense
|
|
||||||
tag: 0.24.0
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
# Immich components
|
# Immich components
|
||||||
|
|
||||||
server:
|
server:
|
||||||
|
|
@ -107,23 +93,3 @@ machine-learning:
|
||||||
# Optional: Set this to pvc to avoid downloading the ML models every start.
|
# Optional: Set this to pvc to avoid downloading the ML models every start.
|
||||||
type: emptyDir
|
type: emptyDir
|
||||||
accessMode: ReadWriteMany
|
accessMode: ReadWriteMany
|
||||||
# storageClass: your-class
|
|
||||||
|
|
||||||
web:
|
|
||||||
enabled: true
|
|
||||||
image:
|
|
||||||
repository: ghcr.io/immich-app/immich-web
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
persistence:
|
|
||||||
library:
|
|
||||||
enabled: false
|
|
||||||
|
|
||||||
proxy:
|
|
||||||
enabled: true
|
|
||||||
image:
|
|
||||||
repository: ghcr.io/immich-app/immich-proxy
|
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
persistence:
|
|
||||||
library:
|
|
||||||
enabled: false
|
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,8 @@ resource "helm_release" "immich" {
|
||||||
repository = "https://immich-app.github.io/immich-charts"
|
repository = "https://immich-app.github.io/immich-charts"
|
||||||
chart = "immich"
|
chart = "immich"
|
||||||
atomic = true
|
atomic = true
|
||||||
version = "0.2.0"
|
# version = "0.2.0"
|
||||||
|
version = "0.3.1"
|
||||||
|
|
||||||
values = [templatefile("${path.module}/chart_values.tpl", { postgresql_password = var.postgresql_password })]
|
values = [templatefile("${path.module}/chart_values.tpl", { postgresql_password = var.postgresql_password })]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue