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:
parent
1914bcf9d0
commit
9c09851b44
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue