From 9c09851b4436913e05152f6528182f1c3094cd9f Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sat, 24 Jan 2026 06:24:40 -0600 Subject: [PATCH] fix(smoke-tests): add imagePullPolicy Always to CronJob Ensures the latest smoke tests image is always pulled, avoiding stale cached images when updates are pushed. Co-Authored-By: Claude Opus 4.5 --- infra/terraform/smoke-tests.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/infra/terraform/smoke-tests.tf b/infra/terraform/smoke-tests.tf index 3d32c88f..89a17f42 100644 --- a/infra/terraform/smoke-tests.tf +++ b/infra/terraform/smoke-tests.tf @@ -49,8 +49,9 @@ resource "kubernetes_cron_job_v1" "smoke_tests" { } container { - name = "playwright" - image = "ghcr.io/antialias/soroban-abacus-flashcards-smoke-tests:latest" + name = "playwright" + image = "ghcr.io/antialias/soroban-abacus-flashcards-smoke-tests:latest" + image_pull_policy = "Always" env { # Test against the app service (load balances across all pods)