From 86385f5842ba927a97ec235b868d74c4ae0b55b8 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Fri, 1 May 2026 19:27:33 +0000 Subject: [PATCH] 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] --- 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 9bd9792e..983d4ae6 100644 --- a/stacks/priority-pass/main.tf +++ b/stacks/priority-pass/main.tf @@ -80,7 +80,7 @@ resource "kubernetes_deployment" "priority-pass" { } container { name = "frontend" - image = "registry.viktorbarzin.me/priority-pass-frontend:ea9176f8" + image = "docker.io/viktorbarzin/priority-pass-frontend:50a432ad" port { container_port = 3000 } @@ -104,7 +104,7 @@ resource "kubernetes_deployment" "priority-pass" { } container { name = "backend" - image = "registry.viktorbarzin.me/priority-pass-backend:c2b4ac50" + image = "docker.io/viktorbarzin/priority-pass-backend:50a432ad" port { container_port = 8000 }