From cd0c030a55f48ea5d8580aa1dd347b28840493dd Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 22 Feb 2026 00:38:33 +0000 Subject: [PATCH] [ci skip] Fix CronJob kubectl image tag to :latest --- modules/kubernetes/openclaw/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kubernetes/openclaw/main.tf b/modules/kubernetes/openclaw/main.tf index 607f8c42..b1a93958 100644 --- a/modules/kubernetes/openclaw/main.tf +++ b/modules/kubernetes/openclaw/main.tf @@ -555,7 +555,7 @@ resource "kubernetes_cron_job_v1" "cluster_healthcheck" { container { name = "healthcheck" - image = "bitnami/kubectl:1.34" + image = "bitnami/kubectl:latest" command = ["bash", "-c", <<-EOF # Find the openclaw pod POD=$(kubectl get pods -n openclaw -l app=openclaw -o jsonpath='{.items[0].metadata.name}' 2>/dev/null)