priority-pass: frontend ea9176f8 (gallery upload), sync backend pin to live

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]
This commit is contained in:
Viktor Barzin 2026-05-01 18:38:30 +00:00
parent 664a85ef1e
commit ce7a584801

View file

@ -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
}