From 2bbf52ac9b9135c3254037c5cd55029f12ddc730 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 28 Feb 2026 14:17:19 +0000 Subject: [PATCH] [ci skip] audiblez-web: switch from digest to tag for CI-driven deploys Woodpecker CI pipeline now pushes tagged images and patches the deployment with the build number tag. Using :latest as the Terraform baseline so CI can override with specific build tags. --- stacks/ebook2audiobook/main.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stacks/ebook2audiobook/main.tf b/stacks/ebook2audiobook/main.tf index 32914d99..f3fa56fd 100644 --- a/stacks/ebook2audiobook/main.tf +++ b/stacks/ebook2audiobook/main.tf @@ -327,8 +327,7 @@ resource "kubernetes_deployment" "audiblez-web" { effect = "NoSchedule" } container { - # Use digest to bypass local registry cache - image = "docker.io/viktorbarzin/audiblez-web@sha256:eb6d13e6372b931bcac45ca389c063dfadc7b3fc2a607127fc76c5627b13a34c" + image = "docker.io/viktorbarzin/audiblez-web:latest" image_pull_policy = "Always" name = "audiblez-web"