priority-pass: pin to DockerHub viktorbarzin/* (GHA-built, sha 50a432ad)

Now that priority-pass has its own GitHub repo (ViktorBarzin/priority-pass)
with a working GHA build pipeline that pushes to DockerHub, switch the TF
deployment pin from registry.viktorbarzin.me to docker.io/viktorbarzin so
future automated rollouts (once the repo is registered with Woodpecker)
land on the matching image source.

[ci skip]
This commit is contained in:
Viktor Barzin 2026-05-01 19:27:33 +00:00
parent d76b5dbc4b
commit 86385f5842

View file

@ -80,7 +80,7 @@ resource "kubernetes_deployment" "priority-pass" {
} }
container { container {
name = "frontend" name = "frontend"
image = "registry.viktorbarzin.me/priority-pass-frontend:ea9176f8" image = "docker.io/viktorbarzin/priority-pass-frontend:50a432ad"
port { port {
container_port = 3000 container_port = 3000
} }
@ -104,7 +104,7 @@ resource "kubernetes_deployment" "priority-pass" {
} }
container { container {
name = "backend" name = "backend"
image = "registry.viktorbarzin.me/priority-pass-backend:c2b4ac50" image = "docker.io/viktorbarzin/priority-pass-backend:50a432ad"
port { port {
container_port = 8000 container_port = 8000
} }