upgrade immich to v1.88.2 [ci skip]
This commit is contained in:
parent
46b19e7887
commit
26f5ba41fe
3 changed files with 12 additions and 6 deletions
|
|
@ -17,14 +17,15 @@ env:
|
|||
# TYPESENSE_API_KEY: "{{ .Values.typesense.env.TYPESENSE_API_KEY }}"
|
||||
# TYPESENSE_HOST: '{{ printf "%s-typesense" .Release.Name }}'
|
||||
# IMMICH_WEB_URL: '{{ printf "http://%s-web:3000" .Release.Name }}'
|
||||
IMMICH_WEB_URL: "http://immich-web.immich.svc.cluster.local:3000"
|
||||
# IMMICH_WEB_URL: "http://immich-web.immich.svc.cluster.local:3000"
|
||||
# IMMICH_WEB_URL: "http://immich-server.immich.svc.cluster.local:3001"
|
||||
# IMMICH_SERVER_URL: '{{ printf "http://%s-server:3001" .Release.Name }}'
|
||||
IMMICH_SERVER_URL: "http://immich-server.immich.svc.cluster.local:3001"
|
||||
# IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'
|
||||
IMMICH_MACHINE_LEARNING_URL: "http://immich-machine-learning.immich.svc.cluster.local:3003"
|
||||
|
||||
image:
|
||||
tag: v1.87.0
|
||||
tag: v1.88.2
|
||||
|
||||
immich:
|
||||
persistence:
|
||||
|
|
|
|||
|
|
@ -89,6 +89,7 @@ resource "helm_release" "immich" {
|
|||
repository = "https://immich-app.github.io/immich-charts"
|
||||
chart = "immich"
|
||||
atomic = true
|
||||
version = "0.2.0"
|
||||
|
||||
values = [templatefile("${path.module}/chart_values.tpl", { postgresql_password = var.postgresql_password })]
|
||||
}
|
||||
|
|
@ -117,9 +118,11 @@ resource "kubernetes_ingress_v1" "immich" {
|
|||
path = "/"
|
||||
backend {
|
||||
service {
|
||||
name = "immich-proxy"
|
||||
# name = "immich-proxy"
|
||||
name = "immich-server" # after v1.88
|
||||
port {
|
||||
number = 8080
|
||||
# number = 8080
|
||||
number = 3001
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -150,9 +153,11 @@ resource "kubernetes_ingress_v1" "photos" {
|
|||
path = "/"
|
||||
backend {
|
||||
service {
|
||||
name = "immich-proxy"
|
||||
# name = "immich-proxy"
|
||||
name = "immich-server" # after v1.88
|
||||
port {
|
||||
number = 8080
|
||||
# number = 8080
|
||||
number = 3001
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue