Merge remote-tracking branch 'forgejo/master' into wizard/excalidraw-export-rename
Some checks failed
ci/woodpecker/push/default Pipeline was successful
Build excalidraw-library / build (push) Has been cancelled

This commit is contained in:
Viktor Barzin 2026-07-02 14:29:34 +00:00
commit 91d0213d1a
3 changed files with 12 additions and 6 deletions

View file

@ -73,7 +73,9 @@ resource "kubernetes_deployment" "immich-frame-emo" {
} }
spec { spec {
container { container {
image = "ghcr.io/immichframe/immichframe:v1.0.32.0" # immich_v3: upstream compat tag for Immich v3 see frame.tf for the
# full story; repin to a versioned tag once upstream releases v3 support.
image = "ghcr.io/immichframe/immichframe:immich_v3"
name = "immich-frame-emo" name = "immich-frame-emo"
resources { resources {
requests = { requests = {

View file

@ -69,7 +69,11 @@ resource "kubernetes_deployment" "immich-frame" {
} }
spec { spec {
container { container {
image = "ghcr.io/immichframe/immichframe:v1.0.32.0" # immich_v3 is the upstream compat tag for Immich v3 servers every
# versioned release ( v1.0.33.0) crashes deserializing v3 API
# responses (immichFrame/immichFrame#653). Pin back to a vX.Y.Z.W tag
# once a stable release ships v3 support (upstream PR #654).
image = "ghcr.io/immichframe/immichframe:immich_v3"
name = "immich-frame" name = "immich-frame"
resources { resources {
requests = { requests = {

View file

@ -15,7 +15,7 @@ locals {
variable "immich_version" { variable "immich_version" {
type = string type = string
# Change me to upgrade # Change me to upgrade
default = "v2.7.5" default = "v3.0.0"
} }
variable "proxmox_host" { type = string } variable "proxmox_host" { type = string }
variable "redis_host" { type = string } variable "redis_host" { type = string }
@ -492,7 +492,7 @@ resource "kubernetes_deployment" "immich-postgres" {
} }
spec { spec {
container { container {
image = "ghcr.io/immich-app/postgres:15-vectorchord0.3.0-pgvectors0.2.0" image = "ghcr.io/immich-app/postgres:15-vectorchord0.4.3-pgvectors0.2.0"
name = "immich-postgresql" name = "immich-postgresql"
port { port {
container_port = 5432 container_port = 5432
@ -882,7 +882,7 @@ resource "kubernetes_cron_job_v1" "clip-index-prewarm" {
restart_policy = "Never" restart_policy = "Never"
container { container {
name = "prewarm" name = "prewarm"
image = "ghcr.io/immich-app/postgres:15-vectorchord0.3.0-pgvectors0.2.0" image = "ghcr.io/immich-app/postgres:15-vectorchord0.4.3-pgvectors0.2.0"
# command overrides the postgres entrypoint runs psql directly. # command overrides the postgres entrypoint runs psql directly.
command = [ command = [
"psql", "-v", "ON_ERROR_STOP=1", "-c", "psql", "-v", "ON_ERROR_STOP=1", "-c",
@ -964,7 +964,7 @@ resource "kubernetes_cron_job_v1" "immich-search-probe" {
} }
init_container { init_container {
name = "measure" name = "measure"
image = "ghcr.io/immich-app/postgres:15-vectorchord0.3.0-pgvectors0.2.0" image = "ghcr.io/immich-app/postgres:15-vectorchord0.4.3-pgvectors0.2.0"
command = ["/bin/bash", "-c", <<-EOT command = ["/bin/bash", "-c", <<-EOT
set -uo pipefail set -uo pipefail
OUT=/shared/metrics.prom OUT=/shared/metrics.prom