[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 9695a438a9
commit 5a944b389e
No known key found for this signature in database
GPG key ID: 0EB088298288D958

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)