From ce7a584801b61cd8d5e248db1d4257fcbd14e3d0 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Fri, 1 May 2026 18:38:30 +0000 Subject: [PATCH] priority-pass: frontend ea9176f8 (gallery upload), sync backend pin to live MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Frontend bug fix: photo input forced camera on mobile via capture="environment". Added separate "Choose from Gallery" / "Take Photo" buttons so users can pick from their photo library. Backend image unchanged; pin synced from stale v8 to live SHA ae1420a0 (the v8 tag was never pushed to the registry). Image built locally and pushed to registry.viktorbarzin.me. The priority-pass project directory isn't under git, so deployment was applied via kubectl set image (matches existing pattern — TF state for this stack is empty). [ci skip] --- stacks/priority-pass/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/priority-pass/main.tf b/stacks/priority-pass/main.tf index a9e62e7d..b19777a8 100644 --- a/stacks/priority-pass/main.tf +++ b/stacks/priority-pass/main.tf @@ -51,7 +51,7 @@ resource "kubernetes_deployment" "priority-pass" { } container { name = "frontend" - image = "registry.viktorbarzin.me/priority-pass-frontend:v5" + image = "registry.viktorbarzin.me/priority-pass-frontend:ea9176f8" port { container_port = 3000 } @@ -75,7 +75,7 @@ resource "kubernetes_deployment" "priority-pass" { } container { name = "backend" - image = "registry.viktorbarzin.me/priority-pass-backend:v8" + image = "registry.viktorbarzin.me/priority-pass-backend:ae1420a0" port { container_port = 8000 }