From 0b199325c881ecc3707f621cfabcf193c39e43e6 Mon Sep 17 00:00:00 2001 From: k8s-infra-cherrypick-robot <90416843+k8s-infra-cherrypick-robot@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:18:48 -0800 Subject: [PATCH] k8s-certs-renew: fix broken script (#12881) Unproquer quoting of variable assignment make the shell interpret it as a command ; since the variable is unused anyway, just delete it. Co-authored-by: Max Gautier --- roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 b/roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 index 01408689b..6f2b03eff 100644 --- a/roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 +++ b/roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 @@ -5,7 +5,6 @@ echo "## Check Expiration before renewal ##" {{ bin_dir }}/kubeadm certs check-expiration days_buffer=7 # set a time margin, because we should not renew at the last moment -calendar={{ auto_renew_certificates_systemd_calendar }} next_time=$(systemctl show k8s-certs-renew.timer -p NextElapseUSecRealtime --value) if [ "${next_time}" == "" ]; then