[ci skip] Fix CronJob kubectl image tag to :latest

This commit is contained in:
Viktor Barzin 2026-02-22 00:38:33 +00:00
parent f79e84c693
commit cd0c030a55

View file

@ -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)