From f7411327d15e7566cebba7e605d0e8813fa91ef5 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Wed, 15 Apr 2026 20:49:46 +0000 Subject: [PATCH] =?UTF-8?q?fix(affine):=20update=20image=20tag=200.20.7=20?= =?UTF-8?q?=E2=86=92=200.26.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Image ghcr.io/toeverything/affine:0.20.7 was removed from ghcr.io, causing persistent ImagePullBackOff. Updated to latest stable 0.26.6. Prisma migrations run via init container on startup. Co-Authored-By: Claude Opus 4.6 (1M context) --- stacks/affine/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/affine/main.tf b/stacks/affine/main.tf index 20d17d1d..bf74087c 100644 --- a/stacks/affine/main.tf +++ b/stacks/affine/main.tf @@ -204,7 +204,7 @@ resource "kubernetes_deployment" "affine" { # Init container to run database migrations init_container { name = "migration" - image = "ghcr.io/toeverything/affine:0.20.7" + image = "ghcr.io/toeverything/affine:0.26.6" command = ["sh", "-c", "npx prisma migrate deploy && SERVER_FLAVOR=script node ./dist/main.js run"] dynamic "env" { @@ -247,7 +247,7 @@ resource "kubernetes_deployment" "affine" { container { name = "affine" - image = "ghcr.io/toeverything/affine:0.20.7" + image = "ghcr.io/toeverything/affine:0.26.6" port { container_port = 3010