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 <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2026-01-24 06:24:40 -06:00
parent 1914bcf9d0
commit 9c09851b44
1 changed files with 3 additions and 2 deletions

View File

@ -49,8 +49,9 @@ resource "kubernetes_cron_job_v1" "smoke_tests" {
} }
container { container {
name = "playwright" name = "playwright"
image = "ghcr.io/antialias/soroban-abacus-flashcards-smoke-tests:latest" image = "ghcr.io/antialias/soroban-abacus-flashcards-smoke-tests:latest"
image_pull_policy = "Always"
env { env {
# Test against the app service (load balances across all pods) # Test against the app service (load balances across all pods)